Link order from change pages, compat for old logs

This commit is contained in:
Raphael Michel
2017-07-18 11:46:21 +02:00
parent b90894c20f
commit 99d614289e
8 changed files with 106 additions and 16 deletions

View File

@@ -11,6 +11,12 @@
{% blocktrans trimmed with code=order.code %}
Change order: {{ code }}
{% endblocktrans %}
<a class="btn btn-link btn-lg"
href="{% url "control:event.order" event=request.event.slug organizer=request.event.organizer.slug code=order.code %}">
{% blocktrans trimmed with order=order.code %}
Back to order {{ order }}
{% endblocktrans %}
</a>
</h1>
<p>
{% blocktrans trimmed %}

View File

@@ -7,6 +7,12 @@
{% block content %}
<h1>
{% trans "Change contact information" %}
<a class="btn btn-link btn-lg"
href="{% url "control:event.order" event=request.event.slug organizer=request.event.organizer.slug code=order.code %}">
{% blocktrans trimmed with order=order.code %}
Back to order {{ order }}
{% endblocktrans %}
</a>
</h1>
<form method="post" class="form-horizontal" href="">

View File

@@ -7,14 +7,22 @@
{% block content %}
<h1>
{% trans "Change locale information" %}
<a class="btn btn-link btn-lg"
href="{% url "control:event.order" event=request.event.slug organizer=request.event.organizer.slug code=order.code %}">
{% blocktrans trimmed with order=order.code %}
Back to order {{ order }}
{% endblocktrans %}
</a>
</h1>
<p>
This language will be used whenever emails are sent to the users.
{% blocktrans trimmed %}
This language will be used whenever emails are sent to the users.
{% endblocktrans %}
</p>
<form method="post" class="form-horizontal" href="">
{% csrf_token %}
<input type="hidden" name="status" value="c" />
<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"

View File

@@ -7,6 +7,12 @@
{% block content %}
<h1>
{% trans "Extend payment term" %}
<a class="btn btn-link btn-lg"
href="{% url "control:event.order" event=request.event.slug organizer=request.event.organizer.slug code=order.code %}">
{% blocktrans trimmed with order=order.code %}
Back to order {{ order }}
{% endblocktrans %}
</a>
</h1>
<form method="post" class="form-horizontal" href="">

View File

@@ -3,7 +3,15 @@
{% load bootstrap3 %}
{% block title %}{% trans "Email history" %}{% endblock %}
{% block content %}
<h1>{% trans "Email history" %}</h1>
<h1>
{% trans "Email history" %}
<a class="btn btn-link btn-lg"
href="{% url "control:event.order" event=request.event.slug organizer=request.event.organizer.slug code=order.code %}">
{% blocktrans trimmed with order=order.code %}
Back to order {{ order }}
{% endblocktrans %}
</a>
</h1>
<div class="alert alert-info">
{% trans "Includes sent custom and mass emails history only." %}
</div>
@@ -12,22 +20,41 @@
{% for log in logs %}
<li class="list-group-item logentry">
<p class="meta">
<span class="fa fa-clock-o"></span> {{ log.datetime|date:"SHORT_DATETIME_FORMAT" }}
<span class="fa fa-fw fa-clock-o"></span> {{ log.datetime|date:"SHORT_DATETIME_FORMAT" }}
{% if log.user %}
<br/><span class="fa fa-user"></span> {{ log.user.get_full_name }}
<br/><span class="fa fa-fw fa-user"></span> {{ log.user.get_full_name }}
{% endif %}
{% if log.display %}
<br/><span class="fa fa-comment-o"></span> {{ log.display }}
<br/><span class="fa fa-fw fa-comment-o"></span> {{ log.display }}
{% endif %}
</p>
<p>
<strong>{% trans "Subject:" %}
{{ log.parsed_data.subject }}</strong>
{% if log.parsed_data.subject.items %}
<div class="alert alert-info">
{% blocktrans trimmed %}
This email has been sent with an older version of pretix. We are therefore not able to
display it here accurately.
{% endblocktrans %}
</div>
<p>
<strong>{% trans "Subject:" %}
{% for k, v in log.parsed_data.subject.items %}
{% if k == order.locale %}
{{ v }}
{% endif %}
{% endfor %}
</strong>
</p>
<pre>{% for k, v in log.parsed_data.message.items %}{% if k == order.locale %}{{ v }}{% endif %}{% endfor %}</pre>
{% else %}
<p>
<strong>{% trans "Subject:" %}
{{ log.parsed_data.subject }}</strong>
</p>
<pre>{{ log.parsed_data.message }}</pre>
</p>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% include "pretixcontrol/pagination.html" %}
{% endblock %}
{% endblock %}

View File

@@ -6,6 +6,12 @@
{% block content %}
<h1>
{% trans "Refund order" %}
<a class="btn btn-link btn-lg"
href="{% url "control:event.order" event=request.event.slug organizer=request.event.organizer.slug code=order.code %}">
{% blocktrans trimmed with order=order.code %}
Back to order {{ order }}
{% endblocktrans %}
</a>
</h1>
<p>{% blocktrans trimmed %}
Do you really want to refund this order? You cannot revert this action.

View File

@@ -3,7 +3,15 @@
{% load bootstrap3 %}
{% block title %}{% trans "Send email" %}{% endblock %}
{% block content %}
<h1>{% trans "Send email" %}</h1>
<h1>
{% trans "Send email" %}
<a class="btn btn-link btn-lg"
href="{% url "control:event.order" event=request.event.slug organizer=request.event.organizer.slug code=order.code %}">
{% blocktrans trimmed with order=order.code %}
Back to order {{ order }}
{% endblocktrans %}
</a>
</h1>
{% block inner %}
<form class="form-horizontal" method="post" action="">
{% csrf_token %}
@@ -34,4 +42,4 @@
</div>
</form>
{% endblock %}
{% endblock %}
{% endblock %}