You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.9 KiB
57 lines
1.9 KiB
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
<div class="container-fluid pt-2">
|
|
<div class="container-fluid" style="{{ theme.homeOverviewBgColor }}">
|
|
<h1 class="text-center"> Overwiev </h1>
|
|
<div class="row">
|
|
<div class="col">
|
|
<h3> <a href="#">Projects</a> </h3>
|
|
<table class="{{ theme.tableClass }}">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Total</th>
|
|
<th scope="col">Active</th>
|
|
<th scope="col">Inactive</th>
|
|
<th scope="col">ToDo</th>
|
|
<th scope="col">Warning</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">239</th>
|
|
<td>200</td>
|
|
<td>39</td>
|
|
<td>58</td>
|
|
<td>5</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="col">
|
|
<h3> <a href="#">News</a> </h3>
|
|
<table class="{{ theme.tableClass }}">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Total POS</th>
|
|
<th scope="col">Max Marg</th>
|
|
<th scope="col">Min Marg</th>
|
|
<th scope="col">Avg Marg</th>
|
|
<th scope="col">Total Rev</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">100'000 CHF</th>
|
|
<td>35 %</td>
|
|
<td>12 %</td>
|
|
<td>23 %</td>
|
|
<td>12'453 CHF</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|