summaryrefslogtreecommitdiff
path: root/lib/grappelli/templates/admin_tools/menu/add_bookmark_form.html
blob: e0fcf2ab9196896eeca471f132f09f6fcc6f362e (plain)
1
2
3
4
5
6
7
8
9
{% url admin-tools-menu-add-bookmark 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 %}" />
        <input type="hidden" name="url" value="{% firstof url request.get_full_path|urlencode %}" />
        <input type="hidden" name="title" value="{{ title }}" />
        <button id="bookmark-button" type="submit"></button>
    </form>
{% endif %}