74 lines
2.9 KiB
Text
74 lines
2.9 KiB
Text
<% #main %>
|
|
<li>
|
|
<% comment.skin Comment#content %>
|
|
<% comment.comments prefix=<ul> suffix=</ul> %>
|
|
</li>
|
|
|
|
<% #reply %>
|
|
<% // Remove the <ul> element for flat comments %>
|
|
<li><% comment.skin Comment#content %></li>
|
|
|
|
<% #content %>
|
|
<a name='<% comment.id %>'></a>
|
|
<article class='uk-comment uk-margin-top'>
|
|
<div class='uk-comment-header'>
|
|
<% if <% comment.creator url %> is null then '' else <% comment.creator url prefix="<a href='" suffix="'>" %> %>
|
|
<img class='uk-comment-avatar' src='<% comment.creator gravatar suffix='?s=50&d=mm' %>'>
|
|
<% if <% comment.creator url %> is null then '' else </a> %>
|
|
<h4 class='uk-comment-title'><% comment.creator %></h4>
|
|
<ul class='uk-comment-meta uk-subnav uk-subnav-line'>
|
|
<li><% comment.created short %></li>
|
|
<% comment.link main "<i class='uk-icon-link'></i>" prefix=<li> suffix=</li> %>
|
|
<% comment.link delete "<i class='uk-icon-trash-o'></i>" prefix=<li> suffix=</li> %>
|
|
<% comment.link edit "<i class='uk-icon-pencil'></i>" prefix=<li> suffix=</li> %>
|
|
<% comment.link comment#form "<i class='uk-icon-comment-o'></i>" prefix=<li> suffix=</li> %>
|
|
</ul>
|
|
</div>
|
|
<div class='uk-comment-body'>
|
|
<% comment.text | comment.format %>
|
|
</div>
|
|
</article>
|
|
|
|
<% #comment %>
|
|
<% comment.skin Comment#content %>
|
|
|
|
<% #edit %>
|
|
<% if <% comment.creator %> is null then
|
|
<% parent.skin <% parent.type suffix=#comment %> %>
|
|
else
|
|
<% gettext 'Edit Comment' prefix=<h1> suffix=<% comment.link main ' ' class='uk-icon-button uk-icon-link uk-text-middle' prefix=' ' suffix=</h1> %> %>
|
|
%>
|
|
<a name="form" id="form"></a>
|
|
<div class='uk-article-meta'>
|
|
<% if <% comment.creator %> is null then '' else
|
|
<% gettext "Posted by {0} on {1}" <% comment.creator %> <% comment.created short %> %>
|
|
%>
|
|
<% if <% comment.created %> is <% comment.modified %> then '' else
|
|
<% gettext "Last modified by {0} on {1}" <% comment.modifier %> <% comment.modified short %> prefix=<div> suffix=</div> %>
|
|
%>
|
|
</div>
|
|
<form class='uk-margin-top uk-form uk-form-stacked' method="post" action="<% response.action %>">
|
|
<div class='uk-form-row'>
|
|
<div class='uk-form-label'>
|
|
<% gettext Title %>
|
|
</div>
|
|
<div class='uk-form-controls'>
|
|
<% comment.input title class='uk-width-1-1' %>
|
|
</div>
|
|
</div>
|
|
<div class='uk-form-row'>
|
|
<div class='uk-form-label'>
|
|
<% gettext Text %>
|
|
</div>
|
|
<div class='uk-form-controls'>
|
|
<% comment.textarea text class='uk-width-1-1' rows=10 %>
|
|
</div>
|
|
</div>
|
|
<div class='uk-margin-top'>
|
|
<button type="submit" name="save" value="1" class='uk-button uk-button-primary'><% gettext Save %></button>
|
|
<button type="button" id="restore" value="1" class='uk-button'><% gettext Restore %></button>
|
|
<a href="" class="cancel uk-button uk-button-link"><% gettext Cancel %></a>
|
|
</div>
|
|
</form>
|
|
<% comment.skin $Story#restore %>
|
|
<p class="backup"></p>
|