Fix #349 -- Allow to clone an event

This commit is contained in:
Raphael Michel
2017-01-01 20:35:53 +01:00
parent 1c54ca7b74
commit a0350d1444
4 changed files with 132 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
{% extends "pretixcontrol/events/create_base.html" %}
{% load i18n %}
{% load bootstrap3 %}
{% block form %}
<p>
{% blocktrans trimmed %}
Do you want to copy over your configuration from a different event? We will copy all
products, categories, quotas, and questions as well as general event settings.
{% endblocktrans %}
</p>
<div class="alert alert-info">
<strong>
{% blocktrans trimmed %}
Please make sure to review all settings extensively. You will probably still need to change some
settings manually, e.g. date and time settings and texts that contain the event name.
{% endblocktrans %}
</strong>
</div>
{% bootstrap_field form.copy_from_event layout="horizontal" %}
{% endblock %}