Plankton_Detector/PlanktonDetector/templates/add_post.html

13 lines
343 B
HTML
Raw Normal View History

{%extends 'base.html'%}
{%load static%}
{%block extracss%}
<link rel="stylesheet" href="{% static 'Community/css/add_post.css' %}">
{%endblock extracss%}
{%block content%}
2024-01-07 00:24:35 +01:00
<form method="POST" id="add_post">
{% csrf_token %}
2024-01-07 01:10:31 +01:00
{{form}}
{{form.media}}
2024-01-07 00:24:35 +01:00
<input type="submit" value="Add post" id="submit">
</form>
{%endblock content%}