Fix spelling and make spacing in templates more consistent
parent
92e7cd6c2b
commit
78ac75423c
@ -1,17 +1,19 @@
|
|||||||
{% extends "team_base.html" %}
|
{% extends "team_base.html" %}
|
||||||
|
|
||||||
{% block title %}Schichtuebersicht{% endblock %}
|
{% block title %}Schichtübersicht{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{%if running_shifts%}
|
{% if running_shifts %}
|
||||||
<h2>Laufende Schichten</h2>
|
<h2>Laufende Schichten</h2>
|
||||||
<ul>
|
<ul>
|
||||||
{%for shift in running_shifts%}
|
{% for shift in running_shifts %}
|
||||||
<li>{{ shift.room.name }} {{shift.start_at}}({{shift.shiftregistration_set.count}}/{{shift.room.required_helpers}})<a href="{%url 'team:shift' shift.id%}">Details</a></li>
|
<li>{{ shift.room.name }} {{ shift.start_at }}({{ shift.shiftregistration_set.count }}/{{ shift.room.required_helpers }})<a href="{% url 'team:shift' shift.id %}">Details</a></li>
|
||||||
{%endfor%}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{%endif%}
|
{% endif %}
|
||||||
<h2>Naechste Schichten</h2>
|
<h2>Nächste Schichten</h2>
|
||||||
{%for shift in next_shifts%}
|
<ul>
|
||||||
<li>{{ shift.room.name }} {{shift.start_at}}({{shift.shiftregistration_set.count}}/{{shift.room.required_helpers}})<a href="{%url 'team:shift' shift.id%}">Details</a></li>
|
{% for shift in next_shifts %}
|
||||||
{%endfor%}
|
<li>{{ shift.room.name }} {{ shift.start_at }}({{ shift.shiftregistration_set.count }}/{{ shift.room.required_helpers }})<a href="{% url 'team:shift' shift.id %}">Details</a></li>
|
||||||
{% endblock %}
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endblock %}
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="de">
|
<html lang="de">
|
||||||
<head>
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
<title>{% block title %}Help!{% endblock %}</title>
|
<title>{% block title %}Help!{% endblock %}</title>
|
||||||
|
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
{%block body%}
|
{% block body %}
|
||||||
{%endblock%}
|
{% endblock %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue