mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-18 01:14:52 -05:00
On the dashboard: - adds a new ‘in the next 24 hours’ section to the dashboard which lists upcoming jobs - tweaks some spacing on the dashboard so that it doesn’t look like too much of a mess - don’t show scheduled jobs in the table of normal jobs On the jobs page: - don’t show scheduled jobs
8 lines
224 B
HTML
8 lines
224 B
HTML
{% macro show_more(url=None, label=None) %}
|
|
{% if url and label %}
|
|
<a href="{{ url }}" class="show-more"><span>{{ label }}</span></a>
|
|
{% else %}
|
|
<span class="show-more-empty"></span>
|
|
{% endif %}
|
|
{% endmacro %}
|