Files
notifications-admin/app/templates/views/jobs/job.html
T

21 lines
628 B
HTML
Raw Normal View History

2016-03-02 17:36:20 +00:00
{% extends "withnav_template.html" %}
{% from "components/banner.html" import banner %}
2016-06-28 09:21:46 +01:00
{% from "components/ajax-block.html" import ajax_block %}
2017-03-22 10:55:15 +00:00
{% from "components/page-footer.html" import page_footer %}
2016-03-02 17:36:20 +00:00
2017-02-13 10:45:15 +00:00
{% block service_page_title %}
{{ uploaded_file_name }}
2016-03-02 17:36:20 +00:00
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">
{{ uploaded_file_name }}
</h1>
{{ ajax_block(partials, updates_url, 'status', finished=finished) }}
{{ ajax_block(partials, updates_url, 'counts', finished=finished) }}
{{ ajax_block(partials, updates_url, 'notifications', finished=finished) }}
2016-03-02 17:36:20 +00:00
{% endblock %}