2013-07-18 15:55:08 +00:00
{% extends "djadmin2theme_default/base.html" %}
2013-06-14 13:58:27 +00:00
{% load admin2_tags i18n %}
2013-07-07 08:15:22 +00:00
{% block title %}{% trans "Are you sure?" %}{% endblock title %}
2013-06-14 13:58:27 +00:00
2013-07-07 08:15:22 +00:00
{% block page_title %}{% trans "Are you sure?" %}{% endblock page_title %}
2013-06-14 13:58:27 +00:00
{% block breadcrumbs %}
2013-07-07 08:15:22 +00:00
< li > < a href = "{% url " admin2:dashboard " % } " > {% trans "Home" %}< / a > < span class = "divider" > /< / span > < / li >
2013-06-14 13:58:27 +00:00
< li > < a href = "{% url " admin2:app_index " app_label = app_label % } " > {{ app_label|title }}< / a > < span class = "divider" > /< / span > < / li >
< li > < a href = "{% url view|admin2_urlname:" index " % } " > {{ model_name_pluralized|title }}< / a > < span class = "divider" > /< / span > < / li >
< li class = "active" > {% trans "Publish" %}< / li >
{% endblock breadcrumbs %}
{% block content %}
2013-07-07 08:15:22 +00:00
< p >
2013-07-07 08:59:13 +00:00
{% blocktrans with objects_name=objects_name count counter=deletable_objects|length %}Are you sure you want to publish the selected {{ objects_name }}?
The following item will be published:
{% plural %}Are you sure you want to publish the selected {{ objects_name }}?
The following items will be published:
2013-07-07 08:15:22 +00:00
{% endblocktrans %}
< / p >
2013-06-14 13:58:27 +00:00
< ul >
{{ deletable_objects|unordered_list }}
< / ul >
< form method = "post" >
{% csrf_token %}
< input type = "hidden" name = "confirmed" value = "yes" / >
< input type = "hidden" name = "action" value = "CustomPublishAction" / >
{% for item in queryset %}
< input type = "hidden" name = "selected_model_pk" value = "{{ item.pk }}" / >
{% endfor %}
< button class = "btn btn-small btn-danger" type = "submit" > {% trans "Publish" %}< / button >
< / form >
{% endblock content %}