mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 04:10:06 -05:00
18 lines
395 B
HTML
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 %} |