TandoorRecipes/cookbook/templates/new_category.html
2018-02-01 15:34:43 +01:00

22 lines
489 B
HTML

{% extends "base.html" %}
{% load crispy_forms_tags %}
{% load i18n %}
{% load django_tables2 %}
{% 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>
{% if table %}
{% render_table table %}
{% endif %}
{% endblock %}