forked from Ruderverein-Donau-Linz/rowt
be able to auto populate people from planned trip
This commit is contained in:
@ -262,12 +262,12 @@
|
||||
<input type="hidden" name="logtype" value="{{ log.logtype }}" />
|
||||
<input type="submit" value="Updaten" />
|
||||
</form>
|
||||
<a href="/log/{{ log.id }}/delete"
|
||||
class="w-28 btn btn-alert"
|
||||
onclick="return confirm('Willst du diesen Logbucheintrag wirklich löschen?');">
|
||||
{% include "includes/delete-icon" %}
|
||||
Löschen
|
||||
</a>
|
||||
<a href="/log/{{ log.id }}/delete"
|
||||
class="w-28 btn btn-alert"
|
||||
onclick="return confirm('Willst du diesen Logbucheintrag wirklich löschen?');">
|
||||
{% include "includes/delete-icon" %}
|
||||
Löschen
|
||||
</a>
|
||||
{% endif %}
|
||||
</details>
|
||||
</div>
|
||||
|
@ -1,3 +1,42 @@
|
||||
{% macro plannedtrips() %}
|
||||
{% if planned_trips %}
|
||||
<script>
|
||||
function setChoiceByLabel(choicesInstance, label) {
|
||||
const choices = choicesInstance.config.choices;
|
||||
const normalizedLabel = label.trim().replace(/\n/g, '');
|
||||
|
||||
const choice = choices.find(c => {
|
||||
const choiceLabel = c.label.trim().replace(/\n/g, '');
|
||||
return choiceLabel === normalizedLabel;
|
||||
});
|
||||
|
||||
if (choice) {
|
||||
choicesInstance.setChoiceByValue(choice.value);
|
||||
} else {
|
||||
console.warn(`Choice with label "${normalizedLabel}" not found`);
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
<div class="bg-white dark:bg-primary-900 rounded-md shadow pb-2 mt-3">
|
||||
<h2 class="h2">Heute geplante Ausfahrten</h2>
|
||||
<div class="grid grid-cols-1 gap-3 mb-3 w-full">
|
||||
{% for planned_trip in planned_trips | sort(attribute='planned_starting_time') %}
|
||||
<div class="pt-2 px-3 border-t text-primary-900 dark:text-white">
|
||||
<strong class="block">
|
||||
{{ planned_trip.cox_name }} ({{ planned_trip.rower | length + 1 }} Personen)
|
||||
<small>{{ planned_trip.planned_starting_time }}</small>
|
||||
<button class="btn btn-primary"
|
||||
onclick="choiceObjects['newrower'].removeActiveItems(-1);choiceObjects['newrower'].setChoiceByValue('{{ planned_trip.cox_id }}'); {% for rower in planned_trip.rower %}setChoiceByLabel(choiceObjects['newrower'], '{{ rower.name }}'){% endfor %} ">
|
||||
👥
|
||||
</button>
|
||||
</strong>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endmacro plannedtrips %}
|
||||
{% macro boatreservation() %}
|
||||
<div class="bg-white dark:bg-primary-900 rounded-md shadow pb-2 mt-3">
|
||||
<h2 class="h2">Reservierungen ({{ reservations | length }})</h2>
|
||||
|
Reference in New Issue
Block a user