52 lines
1.9 KiB
HTML
Executable File
52 lines
1.9 KiB
HTML
Executable File
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %} :: {% trans 'Confirm' %} {{ title }}{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% for subtemplate in subtemplates %}
|
|
{% include subtemplate %}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="box">
|
|
<div class="block" id="block-login">
|
|
{% if delete_view %}
|
|
<h2>{% trans 'Confirm delete' %}</h2>
|
|
{% else %}
|
|
<h2>{% trans 'Confirm' %}</h2>
|
|
{% endif %}
|
|
<div class="content login">
|
|
<form action="" method="post" class="form login">{% csrf_token %}
|
|
{% if next %}
|
|
<input name='next' type='hidden' value='{{ next }}' />
|
|
{% endif %}
|
|
|
|
{% if delete_view %}
|
|
{% if object_name %}
|
|
<h3>{% blocktrans %}Are you sure you wish to delete {{ object_name }}: {{ object }}?{% endblocktrans %}</h3>
|
|
{% else %}
|
|
<h3>{% blocktrans %}Are you sure you wish to delete: {{ object }}?{% endblocktrans %}</h3>
|
|
{% endif %}
|
|
{% else %}
|
|
<h3>{{ title }}</h3>
|
|
{% endif %}
|
|
<h4>{{ message }}</h4>
|
|
|
|
<div class="group navform wat-cf">
|
|
<button class="button" type="submit">
|
|
<img src="{{ MEDIA_URL }}web_theme_media/images/icons/tick.png" alt="{% trans 'Yes' %}" /> {% trans 'Yes' %}
|
|
</button>
|
|
{# TODO: Fix back button #}
|
|
{% comment %}
|
|
<a href="#header" onclick='{% if previous %}window.location.replace("{{ previous }}");{% else %}history.go(-1);{% endif %}' class="button">
|
|
<img src="{{ MEDIA_URL }}web_theme_media/images/icons/cross.png" alt="{% trans 'No' %}"/> {% trans 'No' %}
|
|
</a>
|
|
{% endcomment %}
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|