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