tmont
0dd343cc06
* fixed issue in user provider where if the app restarts you're still logged in but the app doesn't recognize you as such
11 lines
397 B
Plaintext
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>
|