mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
10 lines
306 B
HTML
10 lines
306 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}Delete {{ project.name }}{% endblock %}
|
|
{% block content %}
|
|
<h4>Are you sue you want to delete {{ project.name }}?</h4>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<button class="" type="submit">Delete post</button>
|
|
</form>
|
|
{% endblock %}
|