You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
747 B
HTML
18 lines
747 B
HTML
{% extends "admin/change_form.html" %}
|
|
{% load i18n %}
|
|
{% load custom_send %}
|
|
|
|
{% block object-tools %}
|
|
{% if change %}{% if not is_popup %}
|
|
<ul class="object-tools">
|
|
{% for button in buttons %}
|
|
<input type="button" value="{{ button.short_description }}" name="_button" onclick="window.alert('Hey')">
|
|
<!--<li><a href={% url button.view %} class="historylink">{{ button.short_description }}</a></li>-->
|
|
{% endfor %}
|
|
<li><a href="../history/" class="historylink">{% trans "History" %}</a></li>
|
|
{% if has_absolute_url %}<li><a href="../../../r/{{ content_type_id }}/{{ object_id }}/" class="viewsitelink">View on site</a></li>{% endif%}
|
|
</ul>
|
|
{% endif %}{% endif %}
|
|
{% endblock %}
|
|
|