18 lines
		
	
	
		
			467 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			467 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "forum_base.html" %}
 | 
						|
{% load mptt_tags %}
 | 
						|
{%block title %}{{topic.title}}{%endblock%}
 | 
						|
 | 
						|
{%block breadcrumb %}
 | 
						|
<a href="{% url forums.views.index%}">Forums</a>
 | 
						|
 | 
						|
> <a href="{{topic.forum.get_absolute_url}}">{{topic.forum}}</a>
 | 
						|
{%for f in topic.forum.get_ancestors %}
 | 
						|
> <a href="{{f.get_relative_url}}">{{f}}</a>
 | 
						|
{%endfor%}
 | 
						|
{%endblock%}
 | 
						|
 | 
						|
{%block content %}
 | 
						|
<h2>{{topic.title}}</h2>
 | 
						|
{% include "forums/_post.html" with post=topic.rootPost %}
 | 
						|
{%endblock%}
 |