forked from CGM_Public/pretix_original
28 lines
942 B
HTML
28 lines
942 B
HTML
{% extends "pretixcontrol/event/base.html" %}
|
|
{% load i18n %}
|
|
{% load eventurl %}
|
|
{% block title %}{{ request.event.name }}{% endblock %}
|
|
{% block content %}
|
|
<h1>
|
|
{{ request.event.name }}
|
|
<a href="{% eventurl request.event "presale:event.index" %}" class="btn btn-default btn-sm" target="_blank">
|
|
{% trans "Go to shop" %}
|
|
</a>
|
|
</h1>
|
|
<div class="row dashboard">
|
|
{% for w in widgets %}
|
|
<div class="col-xs-12 col-sm-{% if w.width > 6 %}12{% else %}6{% endif %} col-md-{{ w.width }}">
|
|
{% if w.url %}
|
|
<a href="{{ w.url }}" class="widget">
|
|
{{ w.content|safe }}
|
|
</a>
|
|
{% else %}
|
|
<div class="widget">
|
|
{{ w.content|safe }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|