Some checks failed
Deployment Verification / deploy-and-test (push) Failing after 29s
82 lines
3.3 KiB
HTML
82 lines
3.3 KiB
HTML
{% extends "layouts/default.html" %}
|
|
|
|
{% block title %} Manage Templates {% endblock title %}
|
|
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="/static/assets/css/suggestags.css">
|
|
{% endblock stylesheets %}
|
|
|
|
{% block content %}
|
|
|
|
{% if current_user.is_authenticated %}
|
|
{{ form.hidden_tag() }}
|
|
<div class="page-inner">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="card-title">Report Templates Management</div>
|
|
</div>
|
|
<div class="col">
|
|
<button type="button" class="btn btn-sm btn-dark float-right ml-2" onclick="refresh_template_table();">
|
|
Refresh
|
|
</button>
|
|
<button class="btn btn-sm btn-dark float-right ml-2" onclick="add_report_template();">Add template</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
|
|
<div class="table-responsive" id="assets_table_wrapper">
|
|
<div class="selectgroup">
|
|
<span id="table_buttons"></span>
|
|
</div>
|
|
<table class="table display table table-striped table-hover" width="100%"
|
|
cellspacing="0" id="reports_table">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Description</th>
|
|
<th>Naming format</th>
|
|
<th>Date created</th>
|
|
<th>Created by</th>
|
|
<th>Language</th>
|
|
<th>Type</th>
|
|
<th>Download</th>
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Description</th>
|
|
<th>Naming format</th>
|
|
<th>Date created</th>
|
|
<th>Created by</th>
|
|
<th>Language</th>
|
|
<th>Type</th>
|
|
<th>Download</th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal fade " tabindex="-1" role="dialog" id="modal_add_report_template" data-backdrop="true">
|
|
<div class="modal-lg modal-dialog" role="document">
|
|
<div class="modal-content" id="modal_report_template_content">
|
|
|
|
</div><!-- /.modal-content -->
|
|
</div><!-- /.modal-dialog -->
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock content %}
|
|
|
|
{% block javascripts %}
|
|
|
|
<script src="/static/assets/js/iris/manage.templates.js"></script>
|
|
{% endblock javascripts %} |