Download this file

template.html    9 lines (8 with data), 339 Bytes

1
2
3
4
5
6
7
8
{% extends "base.html" %}
{% load staticfiles %}
{% block content %}
<form id="new_analysisForm" action="{% url 'create_a_my_model' %}" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Save" />
</form>
{% endblock %}