|
@@ -16,7 +16,7 @@
|
|
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@coreui/coreui@5.6.1/dist/js/coreui.bundle.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/@coreui/coreui@5.6.1/dist/js/coreui.bundle.min.js"></script>
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@coreui/icons@3.0.1/dist/cjs/index.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/@coreui/icons@3.0.1/dist/cjs/index.min.js"></script>
|
|
|
-
|
|
|
|
|
|
|
+ <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"></script>
|
|
|
|
|
|
|
|
<link href="/static/assets/css/main.css" rel="stylesheet">
|
|
<link href="/static/assets/css/main.css" rel="stylesheet">
|
|
|
|
|
|
|
@@ -135,7 +135,7 @@
|
|
|
</ul>
|
|
</ul>
|
|
|
</div>
|
|
</div>
|
|
|
</header>
|
|
</header>
|
|
|
- <main role="main" class="container">
|
|
|
|
|
|
|
+ <main role="main" class="container-xxl">
|
|
|
<div class="container-fluid px-6">
|
|
<div class="container-fluid px-6">
|
|
|
<img src="/static/assets/images/Reisacher.png">
|
|
<img src="/static/assets/images/Reisacher.png">
|
|
|
<!--<strong>Forderungsmanagement</strong>-->
|
|
<!--<strong>Forderungsmanagement</strong>-->
|
|
@@ -149,12 +149,24 @@
|
|
|
{% if summary %}
|
|
{% if summary %}
|
|
|
<footer class="footer footer-sticky">
|
|
<footer class="footer footer-sticky">
|
|
|
<div class="container-fluid">
|
|
<div class="container-fluid">
|
|
|
- <ul class="header-nav d-none d-lg-flex">
|
|
|
|
|
- <li class="nav-item">Datensätze: {{ summary.Anzahl }}</li>
|
|
|
|
|
- </ul>
|
|
|
|
|
- <ul class="header-nav ms-auto">
|
|
|
|
|
- <li class="nav-item">Gesamt: <strong>{{ summary.offen|number_format }}</strong></li>
|
|
|
|
|
- </ul>
|
|
|
|
|
|
|
+ <div class="row mb-3">
|
|
|
|
|
+ <div class="col-sm-3">
|
|
|
|
|
+ Datensätze: {{ summary.Anzahl }}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="col-sm-6">
|
|
|
|
|
+ Filter:
|
|
|
|
|
+ {% for f in filter_config %}
|
|
|
|
|
+
|
|
|
|
|
+ {% if f.filter_type != 'hidden' and f.current_value != f.default_value %}
|
|
|
|
|
+ {{ f.text }} = '{{ f.current_value }}' |
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+
|
|
|
|
|
+ {% endfor %}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="col-sm-3 text-end">
|
|
|
|
|
+ Gesamt: <strong>{{ summary.offen|number_format }}</strong>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
</footer>
|
|
</footer>
|
|
|
{% endif %}
|
|
{% endif %}
|