2011-02-14 11:01:31 +00:00
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<VideoGameQuotes.Web.Models.QuoteModel>" %>
<%@ Import Namespace="VideoGameQuotes.Api" %>
<div class="quote-container">
2011-02-15 00:14:24 +00:00
<input type="hidden" class="quote-id" value="<%= Model.Quote.Id %>" />
2011-02-14 11:01:31 +00:00
<div class="quote-data clearfix">
<div class="quote-score-container">
<div class="vote-container">
<% if (!Model.VotedUp) { %>
<span class="vote-for" title="I like this quote">▲</span>
<% } %>
</div>
2011-02-16 02:48:58 +00:00
<div class="quote-score" title="+<%= Model.Quote.UpVotes %>, -<%= Model.Quote.DownVotes %>"><%= Model.Quote.Score %></div>
2011-02-14 11:01:31 +00:00
<div class="vote-container">
<% if (!Model.VotedDown) { %>
<span class="vote-against" title="I hate this quote">▼</span>
<% } %>
</div>
</div>
2011-02-21 23:59:06 +00:00
<div class="quote-text">
2011-02-14 11:01:31 +00:00
<%: Model.Quote.Text %>
2011-02-21 23:59:06 +00:00
</div>
2011-02-14 11:01:31 +00:00
</div>
<div class="clearfix">
2011-02-21 23:59:06 +00:00
<p class="quote-details-created">
<span title="<%: Model.Quote.Created %>">added <%: Model.Quote.GetHumanReadableTimeSinceCreated() %></span>
<% if (Model.User != null && Model.User.Group >= UserGroup.Admin) { %>
by <%= Html.ActionLink(Model.Quote.Creator.GetUsernameOrIp(), "edit", "user", new { usernameOrIp = Model.Quote.Creator.GetUsernameOrIp()}, null) %>
<% } %>
</p>
<p class="quote-links">
<a class="quote-report-link" href="#" title="report this quote as inaccurate, fake, spam, duplicate, etc.">report</a> |
<%= Html.ActionLink("permalink", "quote", "quote", new { id = Model.Quote.Id, text = Model.Quote.GetUrlFriendlyText() }, new { title = "permanent link to this quote" })%>
2011-02-19 09:41:09 +00:00
<% if (Model.User != null && Model.User.Group >= UserGroup.Admin) { %>
| <%= Html.ActionLink("edit", "edit", "quote", new { id = Model.Quote.Id }, null) %>
2011-02-21 23:59:06 +00:00
(<%= Model.Quote.Flags.Count() %> flags)
2011-02-19 09:41:09 +00:00
<% } %>
2011-02-21 23:59:06 +00:00
</p>
2011-02-14 11:01:31 +00:00
</div>
2011-02-21 23:59:06 +00:00
<div class="quote-categories">
<ul class="menu clearfix">
2011-02-24 10:55:08 +00:00
<li>
<a class="game-link" href="<%= Url.Action("browse", "quote", new { qualifiers = "game/" + Model.Quote.Game.Id }) %>" title="browse quotes from the game "<%: Model.Quote.Game.Name %>"">
<img src="data:image/png;base64,<%= Model.Quote.Game.GetBase64EncodedIcon() %>" alt="icon" />
<%: Model.Quote.Game.Name %>
</a>
</li>
2011-02-21 23:59:06 +00:00
<% foreach (var category in Model.Quote.Categories.OrderBy(category => category.Name)) { %>
<li><%= Html.ActionLink(category.Name, "browse", "Quote", new { qualifiers = "category/" + category.Id }, new { title = string.Format("browse quotes categorized as \"{0}\"", category.Name) })%></li>
<% } %>
</ul>
2011-02-14 11:01:31 +00:00
</div>
</div>