Show More
Commit Description:
Merge pull request #20 from nattee/master...
Commit Description:
Merge pull request #20 from nattee/master feature merge
References:
File last commit:
Show/Diff file:
Action:
app/views/announcements/show.html.erb | 37 lines | 554 B | text/plain | TextLexer |
<p>
<b>Author:</b>
<%=h @announcement.author %>
</p>
<p>
<b>Title:</b>
<%=h @announcement.title %>
</p>
<p>
<b>Notes:</b>
<%=h @announcement.notes %>
</p>
<p>
<b>Body:</b>
<%=h markdown(@announcement.body) %>
</p>
<p>
<b>Published:</b>
<%=h @announcement.published %>
</p>
<p>
<b>Show on front page:</b>
<%=h @announcement.frontpage %>
</p>
<p>
<b>Show only in contest:</b>
<%=h @announcement.contest_only %>
</p>
<%= link_to 'Edit', edit_announcement_path(@announcement) %> |
<%= link_to 'Back', announcements_path %>