Add pre-built bulma
parent
ff481a41c1
commit
0e3db29154
@ -1,13 +1,24 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Help!{% endblock %}
|
||||
|
||||
{% block navbar %}
|
||||
<a class="navbar-item" href="{% url 'register' %}">Anmelden</a>
|
||||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% if helper %}
|
||||
Hallo {{ helper.name }}
|
||||
{% else %}
|
||||
<a href="{% url 'register' %}">Anmelden</a>
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<div class="hero-body">
|
||||
<h1 class="title">Hallo {{ helper.name }}!</h1>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
<div id="content">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
@ -1,13 +1,16 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Team{% endblock %}
|
||||
|
||||
{% block navbar %}
|
||||
<a class="navbar-item" href="{% url 'team:shift_overview' %}">Schichtübersicht</a>
|
||||
<a class="navbar-item" href="{% url 'team:shift_all' %}">Alle Schichten</a>
|
||||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<nav>
|
||||
<a href="{% url 'team:shift_overview' %}">Schichtuebersicht</a>
|
||||
<a href="{% url 'team:shift_all' %}">Alle Schichten</a>
|
||||
</nav>
|
||||
<hr>
|
||||
<div id="content">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue