51 lines
1.8 KiB
Twig
51 lines
1.8 KiB
Twig
{% extends "@admin/pages/abstract/dashboard.html.twig" %}
|
|
|
|
{% block stylesheets_page %}
|
|
<!-- Page-specific CSS asset bundle -->
|
|
{{ assets.css('css/form-widgets') | raw }}
|
|
{% endblock %}
|
|
|
|
{# Overrides blocks in head of base template #}
|
|
{% block page_title %}{{ translate("DELETED") }} {{ translate("ORGANISATION", 2) }}{% endblock %}
|
|
|
|
{% block page_description %}{{ translate("ORGANISATION.DELETED_PAGE_DESCRIPTION") }}{% endblock %}
|
|
|
|
{% block body_matter %}
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div id="widget-deleted-organisations" class="box box-primary">
|
|
<div class="box-header">
|
|
<h3 class="box-title"><i class="fas fa-fw fa-sitemap"></i> {{ translate("DELETED") }} {{translate('ORGANISATION', 2)}}</h3>
|
|
{% include "tables/table-tool-menu.html.twig" %}
|
|
</div>
|
|
<div class="box-body">
|
|
{% include "tables/deleted-organisations.html.twig" with {
|
|
"table" : {
|
|
"id" : "table-organisations"
|
|
}
|
|
}
|
|
%}
|
|
</div>
|
|
<div class="box-footer">
|
|
<button type="button" class="btn btn-success js-organisation-return">
|
|
<i class="fas fa-arrow-left"></i> {{translate("RETURN")}}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% block scripts_page %}
|
|
<!-- Include validation rules -->
|
|
<script>
|
|
{% include "pages/partials/page.js.twig" %}
|
|
</script>
|
|
|
|
<!-- Include form widgets JS -->
|
|
{{ assets.js('js/form-widgets') | raw }}
|
|
|
|
<!-- Include page-specific JS -->
|
|
{{ assets.js('js/pages/organisations') | raw }}
|
|
|
|
{% endblock %}
|