add proper indent

This commit is contained in:
koksnuss 2020-05-31 21:38:31 +02:00
parent 361c770f21
commit f94cd362e1
4 changed files with 137 additions and 141 deletions

View File

@ -2,8 +2,6 @@
<div class="coin"> <div class="coin">
<span>{{ marker }}</span> <span>{{ marker }}</span>
<div class="{{ div_class }}" type="overlay"></div> <div class="{{ div_class }}" type="overlay"></div>
</div> </div>{% if name %}
{% if name %} <div class="special_name {{ special_name }} {{ special_class }}">{{ name }}</div>{% endif %}
<div class="special_name {{ special_name }} {{ special_class }}">{{ name }}</div>
{% endif %}
</td> </td>

View File

@ -1,16 +1,16 @@
{% if single_country %} {% if single_country %}{% include 'header.html' with title=country.name %}
{% include 'header.html' with title=country.name %} {% include 'coinc/controlbar.html' with users=users %}{% endif %}
{% include 'coinc/controlbar.html' with users=users %}
{% endif %}
<div class="container-fluid"> <div class="container-fluid">
<table name="{{ country.name_iso }}"> <table name="{{ country.name_iso }}">
<thead> <thead>
<tr> <tr>
<th colspan="12" title="Zurück zur Länderübersicht"> <th colspan="12" title="Zurück zur Länderübersicht">
<img src="/static/coinc/images/{{ country.name_iso }}.png" /> <div class="float-left">
<img src="/static/coinc/images/{{ country.name_iso }}.png">
{{ country.name }}{% if country.comment %} {{ country.name }}{% if country.comment %}
<small> - {{ country.comment }}</small>{% endif %} <small> - {{ country.comment }}</small>{% endif %}
<div class="total_coins">{{ total_coins }}</div> </div>
<div class="float-right">{{ total_coins }}</div>
</th> </th>
</tr> </tr>
<tr> <tr>
@ -35,6 +35,4 @@
{% for year in country.years %}{% show_year country year %}{% endfor %} </tbody> {% for year in country.years %}{% show_year country year %}{% endfor %} </tbody>
</table> </table>
</div> </div>
{% if single_country %} {% if single_country %}{% include "footer.html" with title="Münzsammlung" %}{% endif %}
{% include "footer.html" with title="Münzsammlung" %}
{% endif %}