15 lines
1.2 KiB
Plaintext
15 lines
1.2 KiB
Plaintext
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<VideoGameQuotes.Web.Models.MainMenuModel>" %>
|
|
<%@ Import Namespace="VideoGameQuotes.Api" %>
|
|
|
|
<li><%= Html.ActionLink("Recent", "Recent", "Quote", null, new { title = "View most recently submitted quotes" })%></li>
|
|
<li><%= Html.ActionLink("Best", "Best", "Quote", null, new { title = "View the top rated quotes" })%></li>
|
|
<li><%= Html.ActionLink("Browse", "Browse", "Quote", new { qualifiers = "" }, new { title = "Browse the quote database" })%></li>
|
|
<li><%= Html.ActionLink("Random", "Random", "Quote", null, new { title = "View a random quote" })%></li>
|
|
<li><%= Html.ActionLink("Submit", "Submit", "Quote", null, new { title = "Submit a new quote" }) %></li>
|
|
<% if (Model.User != null && Model.User.Group >= UserGroup.Admin) { %>
|
|
<li><%= Html.ActionLink("Admin", "Index", "Admin", null, new { title = "Perform administrative tasks" }) %></li>
|
|
<% } %>
|
|
<li class="searchbox">
|
|
<%= Html.TextBox("searchQuery", null, new { id = "search-query" })%>
|
|
<span href="#" title="search quotes" id="search-submit"></span>
|
|
</li> |