15 lines
		
	
	
		
			324 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			324 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{%block content%}
 | 
						|
<div class="item">
 | 
						|
<h2>Replying to:</h2>
 | 
						|
{% include 'forums/_reply.html' with post=post %}
 | 
						|
</div>
 | 
						|
<div class="item">
 | 
						|
<form method="POST" action="{%url forums.views.reply post.id %}">
 | 
						|
{% csrf_token %}
 | 
						|
{{form.as_p}}
 | 
						|
<input type="submit" value="Submit"/>
 | 
						|
</form>
 | 
						|
</div>
 | 
						|
{%endblock%}
 |