styling
All checks were successful
CI/CD Pipeline / test (push) Successful in 9m21s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Has been skipped

This commit is contained in:
philipp 2024-08-19 11:57:51 +02:00
parent eb15421d08
commit 116c7523d2
5 changed files with 41 additions and 38 deletions

View File

@ -2,7 +2,7 @@
secret_key = "/NtVGizglEoyoxBLzsRDWTy4oAG1qDw4J4O+CWJSv+fypD7W9sam8hUY4j90EZsbZk8wEradS5zBoWtWKi3k8w==" secret_key = "/NtVGizglEoyoxBLzsRDWTy4oAG1qDw4J4O+CWJSv+fypD7W9sam8hUY4j90EZsbZk8wEradS5zBoWtWKi3k8w=="
rss_key = "rss-key-for-ci" rss_key = "rss-key-for-ci"
limits = { file = "10 MiB", data-form = "10 MiB"} limits = { file = "10 MiB", data-form = "10 MiB"}
smtp_pw = "8kIjlLH79Ky6D3jQ" smtp_pw = "8kIjlLH79Ky6D3j"
usage_log_path = "./usage.txt" usage_log_path = "./usage.txt"
openweathermap_key = "c8dab8f91b5b815d76e9879cbaecd8d5" openweathermap_key = "c8dab8f91b5b815d76e9879cbaecd8d5"
wordpress_key = "pw-to-allow-sending-notifications" wordpress_key = "pw-to-allow-sending-notifications"

View File

@ -12,8 +12,12 @@
{% for user in schnupperanten %} {% for user in schnupperanten %}
<li class="py-1" <li class="py-1"
{% if "paid" in user.roles %}style="background-color: green;"{% endif %}> {% if "paid" in user.roles %}style="background-color: green;"{% endif %}>
{{ user.name }} ({{ user.mail }} {% if user.notes %} | {{ user.notes }}{% endif %}) {{ user.name }} ({{ user.mail }}
<a href="/admin/user/move/schnupperant/{{ user.id }}/to/scheckbuch">Zu Scheckbuch umwandeln</a> {%- if user.notes %} | {{ user.notes }}{% endif -%}
)
<a class="btn btn-primary"
href="/admin/user/move/schnupperant/{{ user.id }}/to/scheckbuch"
onclick="return confirm('Willst du wirklich ein Scheckbuch erstellen? Die Person erhält ein Mail mit allen Infos.')">Zu Scheckbuch umwandeln</a>
</li> </li>
{% endfor %} {% endfor %}
</ol> </ol>

View File

@ -56,7 +56,10 @@
data-relation="distance_in_km" data-relation="distance_in_km"
autocomplete="off" /> autocomplete="off" />
<datalist id="destinations"> <datalist id="destinations">
{% for distance in distances %}<option value="{{ distance.destination }}" distance="{{ distance.distance_in_km}}" />{% endfor %} {% for distance in distances %}
<option value="{{ distance.destination }}"
distance="{{ distance.distance_in_km }}" />
{% endfor %}
</datalist> </datalist>
</div> </div>
<div class="relative col-span-2"> <div class="relative col-span-2">

View File

@ -35,9 +35,7 @@
<div> <div>
{% if notification.link %} {% if notification.link %}
<a href="{{ notification.link }}" class="inline-block"> <a href="{{ notification.link }}" class="inline-block">
<button class="btn btn-primary" type="button"> <button class="btn btn-primary" type="button">🔗</button>
🔗
</button>
</a> </a>
{% endif %} {% endif %}
{% if not notification.read_at %} {% if not notification.read_at %}
@ -65,9 +63,7 @@
<div class="mt-1">{{ notification.message | safe }}</div> <div class="mt-1">{{ notification.message | safe }}</div>
{% if notification.link %} {% if notification.link %}
<a href="{{ notification.link }}" class="inline-block"> <a href="{{ notification.link }}" class="inline-block">
<button class="btn btn-primary" type="button"> <button class="btn btn-primary" type="button">🔗</button>
🔗
</button>
</a> </a>
{% endif %} {% endif %}
</div> </div>