Added Project delete view

This commit is contained in:
Kristofers Solo
2023-06-26 14:42:10 +00:00
parent b041bf3773
commit 360a1d76c0
3 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{% 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 %}