mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
- Add a button to the LibraryVersion admin to reload the docs links - Add some minimal docs on the admin features
12 lines
343 B
HTML
12 lines
343 B
HTML
{% extends "admin/change_list.html" %}
|
|
{% load i18n admin_urls %}
|
|
|
|
{% block object-tools %}
|
|
<ul class="object-tools">
|
|
{% block object-tools-items %}
|
|
{{ block.super }}
|
|
<li><a href="{% url 'admin:update_docs_urls' %}" class="addlink">{% trans "Refresh Documentation Links" %}</a></li>
|
|
{% endblock %}
|
|
</ul>
|
|
{% endblock %}
|