Add bulma-prefers-dark, improve style
parent
171cf5bf1f
commit
2a20e6249b
File diff suppressed because one or more lines are too long
@ -1,7 +1,15 @@
|
||||
<li class="box">{{ shift.room.name }} {{ shift.start_at }}
|
||||
{% if registered %}
|
||||
<a class="button is-info is-small" href="{% url 'shift' shift.id %}">Details</a>
|
||||
{% else %}
|
||||
<a class="button is-primary is-small" href="{% url 'shift' shift.id %}">Mithelfen</a>
|
||||
{% endif %}
|
||||
</li>
|
||||
<div class="column is-one-quarter">
|
||||
<div class="box">
|
||||
<div class="content">
|
||||
<strong>Ort:</strong> {{ shift.room.name }}<br>
|
||||
<strong>Beginn:</strong> {{ shift.start_at }}
|
||||
</div>
|
||||
<div class="is-flex is-justify-content-end">
|
||||
{% if registered %}
|
||||
<a class="button is-info is-small" href="{% url 'shift' shift.id %}">Details</a>
|
||||
{% else %}
|
||||
<a class="button is-primary is-small" href="{% url 'shift' shift.id %}">Mithelfen</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue