vgquotes/Src/VideoGameQuotes.Web/Views/Shared/SingleQuote.ascx

39 lines
1.3 KiB
Plaintext
Raw Normal View History

<%@ 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 %>" />
<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">&#x25B2;</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>
<div class="vote-container">
<% if (!Model.VotedDown) { %>
<span class="vote-against" title="I hate this quote">&#x25BC;</span>
<% } %>
</div>
</div>
<p class="quote-text">
<%: Model.Quote.Text %>
</p>
</div>
<div class="clearfix">
<a class="quote-report-link" href="#" title="report this quote as inaccurate, fake, spam, duplicate, etc.">report</a>
</div>
<div class="quote-details">
<dl>
<dt>Game</dt>
2011-02-15 00:14:24 +00:00
<dd><%= Html.ActionLink(Model.Quote.Game.Name, "browse", "Quote", new { game = Model.Quote.Game.Id }, null) %></dd>
<dt>Added</dt>
<dd><%: Model.Quote.GetHumanReadableTimeSinceCreated() %></dd>
</dl>
</div>
</div>