forked from CGM_Public/pretix_original
109 lines
5.6 KiB
HTML
109 lines
5.6 KiB
HTML
{% extends "pretixcontrol/items/base.html" %}
|
|
{% load i18n %}
|
|
{% load bootstrap3 %}
|
|
{% load escapejson %}
|
|
{% load formset_tags %}
|
|
{% block title %}{% blocktrans with name=question.question %}Question: {{ name }}{% endblocktrans %}{% endblock %}
|
|
{% block inside %}
|
|
<h1>
|
|
{% blocktrans with name=question.question %}Question: {{ name }}{% endblocktrans %}
|
|
<a href="{% url "control:event.items.questions.edit" event=request.event.slug organizer=request.event.organizer.slug question=question.pk %}"
|
|
class="btn btn-default">
|
|
<span class="fa fa-edit"></span>
|
|
{% trans "Edit question" %}
|
|
</a>
|
|
</h1>
|
|
<form class="form-inline helper-display-inline" action="" method="get">
|
|
<p>
|
|
<select name="status" class="form-control">
|
|
<option value="" {% if request.GET.status == "" %}selected="selected"{% endif %}>{% trans "All orders" %}</option>
|
|
<option value="p" {% if request.GET.status == "p" %}selected="selected"{% endif %}>{% trans "Paid" %}</option>
|
|
<option value="pv" {% if request.GET.status == "pv" %}selected="selected"{% endif %}>{% trans "Paid or confirmed" %}</option>
|
|
<option value="n" {% if request.GET.status == "n" %}selected="selected"{% endif %}>{% trans "Pending" %}</option>
|
|
<option value="np" {% if request.GET.status == "np" or "status" not in request.GET %}selected="selected"{% endif %}>{% trans "Pending or paid" %}</option>
|
|
<option value="o" {% if request.GET.status == "o" %}selected="selected"{% endif %}>{% trans "Pending (overdue)" %}</option>
|
|
<option value="e" {% if request.GET.status == "e" %}selected="selected"{% endif %}>{% trans "Expired" %}</option>
|
|
<option value="ne" {% if request.GET.status == "ne" %}selected="selected"{% endif %}>{% trans "Pending or expired" %}</option>
|
|
<option value="c" {% if request.GET.status == "c" %}selected="selected"{% endif %}>{% trans "Canceled" %}</option>
|
|
</select>
|
|
<select name="item" class="form-control">
|
|
<option value="">{% trans "All products" %}</option>
|
|
{% for item in items %}
|
|
<option value="{{ item.id }}"
|
|
{% if request.GET.item|add:0 == item.id %}selected="selected"{% endif %}>
|
|
{{ item.name }}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
<button class="btn btn-primary" type="submit">{% trans "Filter" %}</button>
|
|
</p>
|
|
</form>
|
|
<div class="row" id="question-stats">
|
|
{% if not stats %}
|
|
<div class="empty-collection col-md-10 col-xs-12">
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
No matching answers found.
|
|
{% endblocktrans %}
|
|
</p>
|
|
{% if not items %}
|
|
<p>
|
|
{% trans "You need to assign the question to a product to collect answers." %}
|
|
</p>
|
|
|
|
<a href="{% url "control:event.items.questions.edit" event=request.event.slug organizer=request.event.organizer.slug question=question.pk %}"
|
|
class="btn btn-primary btn-lg"><i class="fa fa-edit"></i> {% trans "Edit question" %}</a>
|
|
{% endif %}
|
|
</div>
|
|
{% else %}
|
|
<div class="col-md-5 col-xs-12">
|
|
<div class="chart" id="question_chart" data-type="{{ question.type }}">
|
|
|
|
</div>
|
|
<script type="application/json" id="question-chart-data">{{ stats_json|escapejson }}</script>
|
|
</div>
|
|
<div class="col-md-5 col-xs-12">
|
|
<table class="table table-bordered table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Answer" %}</th>
|
|
<th class="text-right">{% trans "Count" %}</th>
|
|
<th class="text-right">{% trans "Percentage" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for stat in stats %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url "control:event.orders" event=request.event.slug organizer=request.event.organizer.slug %}?status={{ request.GET.status|default:"np" }}&item={{ request.GET.item }}&question={{ question.pk }}&answer={{ stat.alink|default:stat.answer|urlencode }}">
|
|
{{ stat.answer }}
|
|
</a>
|
|
</td>
|
|
<td class="text-right">{{ stat.count }}</td>
|
|
<td class="text-right">{{ stat.percentage|floatformat:1 }} %</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td><strong>{% trans "Sum" %}</strong></td>
|
|
<td class="text-right"><strong>{{ total }}</strong></td>
|
|
<td></td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
<div class="col-xs-12 col-lg-2">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">
|
|
{% trans "Question history" %}
|
|
</h3>
|
|
</div>
|
|
{% include "pretixcontrol/includes/logs.html" with obj=question %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|