[DRAFT] first skin, add local font DejaVu Sans

This commit is contained in:
Marie Birner
2023-03-04 11:39:10 +01:00
parent edf59251d0
commit 30121e7d48
7 changed files with 148 additions and 36 deletions

View File

@ -1,15 +1,15 @@
{% extends "base" %}
{% block content %}
<h1 class="bold">Ausfahrten</h1>
{% for day_with_trip in data %}
{% set day = day_with_trip.day %}
{% set day_string = day.day | date(format="%Y-%m-%d") %}
{% set trips = day_with_trip.trips %}
<h1>{{ day.day | date(format="%d.%m.%Y")}}</h1>
<br />
<div class="bg-gray p-3 mb-1">
<strong class="block">{{ day.day | date(format="%d.%m.%Y")}}</strong>
{% if day.planned_amount_cox > 0%}
{% if day.planned_amount_cox > 0%}
{% set cox = trips | filter(attribute="user.is_cox", value=true) %}
{% set amount_cox = cox | length %}
@ -91,7 +91,7 @@
</form>
</details>
{% endif %}
<hr />
</div>
{% endfor %}