Commit 3f7f0833 by Őry Máté

dashboard: make operate template more generic

parent 9168b2bd
{% load i18n %} {% load i18n %}
{% block question %}
<p> <p>
{% blocktrans with obj=object op=op.name %} {% blocktrans with obj=object op=op.name %}
Do you want to do the following operation on {{obj}}: Do you want to do the following operation on {{obj}}:
...@@ -7,9 +8,12 @@ Do you want to do the following operation on {{obj}}: ...@@ -7,9 +8,12 @@ Do you want to do the following operation on {{obj}}:
{% endblocktrans %} {% endblocktrans %}
</p> </p>
<p class="text-info">{{op.name}}: {{op.description}}</p> <p class="text-info">{{op.name}}: {{op.description}}</p>
<div class="pull-right"> {% endblock %}
<form method="POST" action="{{url}}">{% csrf_token %} <form method="POST" action="{{url}}">{% csrf_token %}
{% block formfields %}{% endblock %}
<div class="pull-right">
<a class="btn btn-default" href="{{object.get_absolute_url}}" <a class="btn btn-default" href="{{object.get_absolute_url}}"
data-dismiss="modal">{% trans "Cancel" %}</a> data-dismiss="modal">{% trans "Cancel" %}</a>
<button class="btn btn-danger" type="submit">{% if op.icon %}<i class="icon-{{op.icon}}"></i> {% endif %}{{ op|capfirst }}</button> <button class="btn btn-danger" type="submit">{% if op.icon %}<i class="icon-{{op.icon}}"></i> {% endif %}{{ op|capfirst }}</button>
</div>
</form> </form>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment