Files
caminus/templates/forums/topic.html
2012-04-18 10:33:36 -04:00

40 lines
1.1 KiB
HTML

{% extends "forum_base.html" %}
{% load minecraft %}
{% load mptt_tags %}
{%block title %}{{topic.title}}{%endblock%}
{%block breadcrumb %}
<a href="{% url forums.views.index%}">Forums</a>
&gt; <a href="{{topic.forum.get_absolute_url}}">{{topic.forum}}</a>
{%for f in topic.forum.get_ancestors %}
&gt; <a href="{{f.get_relative_url}}">{{f}}</a>
{%endfor%}
{%endblock%}
{%block content %}
<div class="topic">
<div class="avatar">{% avatar topic.rootPost.user 32 %}</div>
<h2>{{topic.title}}</h2>
<div class="byline">Started by <span itemprop="author">{{topic.rootPost.user}}</span> {{ topic.created|timesince }} ago</div>
{% if perms.forums %}
<ul>
{% if perms.forums.delete_topic %}
<li><a href="{% url forums.views.deleteTopic topicID=topic.id %}">Delete Topic</a></li>
{% endif %}
{% if perms.forums.sticky_topic %}
<li><a href="{% url forums.views.stickyTopic topicID=topic.id %}">
{% if topic.sticky %}
UnSticky
{% else %}
Make Sticky
{% endif %}
</a></li>
{% endif %}
</ul>
{% endif %}
<br style="clear:both;"/>
{% include "forums/_post.html" with post=topic.rootPost %}
</div>
{%endblock%}