Files
recipes/cookbook/templates/new_category.html
Unknown 4d3e8e6b53 forms
2018-02-01 15:05:53 +01:00

18 lines
395 B
HTML

{% extends "base.html" %}
{% load crispy_forms_tags %}
{% load i18n %}
{% block title %}{% trans 'New Category' %}{% endblock %}
{% block content %}
<h3>
{% trans 'New Category' %}
<small class="text-muted">{% trans 'New recipe Category' %}</small>
</h3>
<form method="POST" class="post-form">{% csrf_token %}
{% crispy form %}
</form>
{% endblock %}