{% import 'jinja_master/lib.html' as lib with context %}
<div>
<div id="{{value.slug}}" class="discussion-post">
<div class="row">
<div class="grid-3 tcenter">
<p class="gravatar">
{% set size = value.parent and 32 or 48 %}
<a href="{{value.author().url()}}">{{lib.gravatar(value.author(), size=size)}}</a><br/>
<a href="{{value.author().url()}}">{{value.author().display_name}}</a><br />{{h.ago(value.timestamp)}}
</p>
</div>
<div class="grid-13" style="width: {{indent == 0 and 475 or 465-indent*10}}px">
<div class="display_post">
{% if show_subject %}
<b>{{value.subject or '(no subject)'}}<br/></b>
{% endif %}
{{g.markdown.convert(value.text)|safe}}
</div>
{% if h.has_artifact_access('post', value.thread)() %}
<div class="edit_post_form reply" style="display:none">
{{widgets.edit_post.display(value=value, submit_text='Save', action=value.url())}}
</div>
{% endif %}
{% if h.has_artifact_access('moderate', value)() %}
<div class="add_attachment_form" style="display:none; clear: both; overflow: auto;">
{{widgets.attach_post.display(value=value, action=value.url() + 'attach')}}
</div>
{% endif %}
{% if value.attachments %}
<div>
<strong>Attachments</strong>
<div class="clear"></div>
{% for att in value.attachments %}
<div class="attachment_thumb" style="min-height: 130px;">
{% if att.is_image() %}
<a href="{{att.url()}}"><img src="{{att.url()}}/thumb"/></a>
<br/>
<a href="{{att.url()}}">{{att.filename}}</a>
{% else %}
<a href="{{att.url()}}">{{att.filename}}</a>
{% endif %}
{% if c.user._id and value.author_id==c.user._id %}
<br>
<form method="POST" action="{{att.url()}}">
<input class="submit delete_attachment" type="submit" name="delete" value="X"/>
</form>
{% endif %}
</div>
{% endfor %}
</div>
{% endif %}
</div>
<div class="options grid-3">
<a href="" class="reply_post btn">Reply</a>
<div style="clear:both">
<a href="{{tg.url(url.current(),dict(page=page,limit=limit))}}#{{value.slug}}" class="little_link shortlink"><span>Link</span></a><br/>
<a href="" class="edit_post little_link"><span>Edit</span></a><br/>
{% if h.has_artifact_access('moderate', value)() %}
{{widgets.moderate_post.display(value=value, action=value.url()+'moderate')}}
{% endif %}
{% if h.has_artifact_access('post', value.thread)() %}
<a href="#" class="add_attachment little_link"><span>Attach</span></a>
{% endif %}
</div>
</div>
<div class="shortlink_popup" style="display: none">
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
<input type="text" style="width:100%"
value='<a href="{{tg.url(url.current(),dict(page=page,limit=limit))}}#{{value.slug}}">{{value.subject or "comment"}}</a>'>
</div>
</div>
<ul>
<li>
{% if h.has_artifact_access('post', value.thread)() %}
<div class="row reply_post_form" style="display:none">
<div class="reply">
<div class="grid-3 tcenter">
<p class="gravatar">
{{lib.gravatar(c.user, size=32)}}<br/><br/>
<a href="{{c.user.url()}}">{{c.user.display_name}}</a>
</p>
</div>
<div class="grid-13" style="width: {{575-indent*10}}px">
{{widgets.edit_post.display(
submit_text='Post Reply',
action=value.url()+'reply',
value=dict(
text='',
subject=value.reply_subject()),
)}}
</div>
</div>
</div>
{% endif %}
</li>
</ul>
</div>
<!--
<div class="span-2" py:if="has_artifact_access('post', value.thread)()">
<a href="" class="add_attachment"><span class="ui-icon ui-icon-document"></span>Attach</a>
</div>
<div class="span-2" py:if="has_artifact_access('moderate', value.thread)() and 'promote_to_thread' in widgets and not supress_promote">
<a href="" class="promote_to_thread"><span class="ui-icon ui-icon-arrowthick-1-n"></span>Promote</a>
</div>
</div>-->
{% if h.has_artifact_access('moderate', value.thread)() and 'promote_to_thread' in widgets and not supress_promote %}
<div class="promote_to_thread_form push-{{3+indent}} span-{{16-indent}} last clear" style="display:none">
{{widgets.promote_to_thread.display(value=value, action=value.url()+'moderate')}}
</div>
{% endif %}
</div>