admin: add generic create and delete template

This commit is contained in:
Jens Langhammer
2018-11-26 22:30:14 +01:00
parent 5c5c865c0b
commit 755997a9c7
5 changed files with 38 additions and 8 deletions

View File

@ -0,0 +1,11 @@
{% extends "generic/create.html" %}
{% load i18n %}
{% block title %}
{% blocktrans with type=request.GET.type %}Create {{ type }}{% endblocktrans %}
{% endblock %}
{% block above_form %}
<h1>{% blocktrans with type=request.GET.type %}Create {{ type }}{% endblocktrans %}</h1>
{% endblock %}