{% extends "crud/detail.html" %}
{% load i18n %}
{% load crispy_forms_tags %}

{% block detail_content %}

	<form method="POST">
		{% csrf_token %}
		{% crispy form %}
	</form>
{% endblock %}