15 lines
		
	
	
		
			367 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			367 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% block title %}Delete Post{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <h1>Delete this post?</h1>
 | 
						|
    {% include "activities/_mini_post.html" %}
 | 
						|
    <form action="." method="POST">
 | 
						|
        {% csrf_token %}
 | 
						|
        <a class="button" onclick="history.back()">Cancel</a>
 | 
						|
        <button class="delete">Delete</button>
 | 
						|
    </form>
 | 
						|
 | 
						|
{% endblock %}
 |