Created add_project.html file

This commit is contained in:
Kristofers Solo 2023-03-27 21:44:12 +03:00
parent 6236d25ab4
commit 88701203ec

View File

@ -0,0 +1,10 @@
{% extends "layout.html" %}
{% load static %}
{% block title %}{{ title }}{% endblock %}
{% block meta %}{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}{{ form }}
<button type="submit">Post</button>
</form>
{% endblock %}