vgquotes/Src/VideoGameQuotes.Web/Views/Admin/FlaggedQuote.ascx
2011-03-02 20:18:33 +00:00

11 lines
397 B
Plaintext

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<VideoGameQuotes.Api.Quote>" %>
<%@ Import Namespace="VideoGameQuotes.Api" %>
<div class="flagged-quote">
<span class="flag-count"><%: Model.Flags.Count() %></span>
<p>
<%= Html.ActionLink(Model.GetAbbreviatedText(), "Quote", "Quote", new { id = Model.Id, text = Model.GetUrlFriendlyText() }, null) %>
</p>
</div>