5dd65cb173
- Fixed #790 (Unicode Error while creating motion pdf if motion text contains umlauts and motion is imported from CSV) - Fixed #742: Added categories and identifier to motion pdf. - Fixed wrong title order (app title - OpenSlides).
21 lines
612 B
HTML
21 lines
612 B
HTML
{% extends "base.html" %}
|
||
|
||
{% load i18n %}
|
||
|
||
{% block title %}{% trans "Custom slide" %} – {{ block.super }}{% endblock %}
|
||
|
||
{% block content %}
|
||
<h1>{% trans 'Custom slide' %}
|
||
<small class="pull-right">
|
||
<a href="{% url 'dashboard' %}" class="btn btn-mini"><i class="icon-chevron-left"></i> {% trans "Back to overview" %}</a>
|
||
</small>
|
||
</h1>
|
||
<form action="" method="post">{% csrf_token %}
|
||
{% include "form.html" %}
|
||
<p>
|
||
{% include "formbuttons_saveapply.html" %}
|
||
</p>
|
||
<small>* {% trans "required" %}</small>
|
||
</form>
|
||
{% endblock %}
|