mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
- Remove the kwargs from the call to update_libraries - Add placeholder task for commit counts - Refactor to simplify the commit count logic and pull it out of the management command and into a task - Adjust schedule - Add a separate task to update current month commit counts - Add CommitData to admin, and add functionality to update the CommitData from the admin via button, like other admin features
12 lines
336 B
HTML
12 lines
336 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_commit_data' %}" class="addlink">{% trans "Update Commit Data" %}</a></li>
|
|
{% endblock %}
|
|
</ul>
|
|
{% endblock %}
|