mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Add missing template
This commit is contained in:
27
src/pretix/control/templates/pretixcontrol/order/extend.html
Normal file
27
src/pretix/control/templates/pretixcontrol/order/extend.html
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
{% extends "pretixcontrol/event/base.html" %}
|
||||||
|
{% load i18n %}
|
||||||
|
{% load bootstrap3 %}
|
||||||
|
{% block title %}
|
||||||
|
{% trans "Extend payment term" %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block content %}
|
||||||
|
<h1>
|
||||||
|
{% trans "Extend payment term" %}
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<form method="post" class="form-horizontal" href="">
|
||||||
|
{% csrf_token %}
|
||||||
|
<input type="hidden" name="status" value="c" />
|
||||||
|
{% bootstrap_form form layout='horizontal' %}
|
||||||
|
<div class="form-group submit-group">
|
||||||
|
<a class="btn btn-default btn-lg"
|
||||||
|
href="{% url "control:event.order" event=request.event.slug organizer=request.event.organizer.slug code=order.code %}">
|
||||||
|
{% trans "Cancel" %}
|
||||||
|
</a>
|
||||||
|
<button class="btn btn-danger btn-save btn-lg" type="submit">
|
||||||
|
{% trans "Save" %}
|
||||||
|
</button>
|
||||||
|
<div class="clearfix"></div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
{% endblock %}
|
||||||
Reference in New Issue
Block a user