vgquotes/Src/VideoGameQuotes.Web/Views/Admin/FlaggedQuote.ascx

11 lines
397 B
Plaintext
Raw Normal View History

<%@ 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>