mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
22 lines
475 B
Plaintext
22 lines
475 B
Plaintext
@{
|
|
ViewBag.Title = "Administration | BuildFeed";
|
|
}
|
|
|
|
<h2>Administration</h2>
|
|
|
|
<ul>
|
|
<li>
|
|
@Html.ActionLink("Manage users", "index", "users")
|
|
<ul>
|
|
<li>@Html.ActionLink("View administrators", "admins", "users")</li>
|
|
</ul>
|
|
</li>
|
|
<li>
|
|
@Html.ActionLink("Manage metadata", "index", "meta")
|
|
</li>
|
|
@if (User.Identity.Name == "hounsell")
|
|
{
|
|
<li>@Html.ActionLink("Initial setup", "setup")</li>
|
|
}
|
|
</ul>
|