[BUGIFX] edit trip styling

This commit is contained in:
Marie Birner 2023-04-08 07:44:31 +02:00
parent 0c99768366
commit 276e2fae88

View File

@ -189,8 +189,8 @@
{% set amount_cur_rower = trip.rower | length %} {% set amount_cur_rower = trip.rower | length %}
{{ macros::box(participants=trip.rower, empty_seats=trip.max_people - amount_cur_rower, bg='primary-100', color='black') }} {{ macros::box(participants=trip.rower, empty_seats=trip.max_people - amount_cur_rower, bg='primary-100', color='black') }}
{% if trip.cox_id == loggedin_user.id %} {% if trip.cox_id == loggedin_user.id %}
<div> <div class="bg-gray-100 p-3 mt-4 rounded-md">
<h3 class="text-lg text-primary-950 font-bold uppercase tracking-wide">Edit trip</h3> <h3 class="text-primary-950 font-bold uppercase tracking-wide mb-2">Ausfahrt bearbeiten</h3>
<form action="/cox/trip/{{ trip.id }}" method="post" class="grid gap-3"> <form action="/cox/trip/{{ trip.id }}" method="post" class="grid gap-3">
{{ macros::input(label='Anzahl Ruderer', name='max_people', type='number', required=true, value=trip.max_people) }} {{ macros::input(label='Anzahl Ruderer', name='max_people', type='number', required=true, value=trip.max_people) }}
{{ macros::input(label='Anmerkungen', name='notes', type='input', required=true, value=trip.notes) }} {{ macros::input(label='Anmerkungen', name='notes', type='input', required=true, value=trip.notes) }}