blob: 7d9567f0d0e1f4ab3c4b2e5518e4df580bcef12f (
plain)
1
2
3
4
5
6
7
|
{% url admin-tools-menu-remove-bookmark bookmark.id as form_url %}
{% if form_url %}
<form id="bookmark-form" action="{{ form_url }}" method="POST">
<input type="hidden" name="next" value="{% firstof url request.get_full_path|urlencode %}" />
<button id="bookmark-button" class="bookmarked" type="submit"></button>
</form>
{% endif %}
|