{# scheduler/partials/mobile_cards.html Mobile-Karten für geplante Jobs -- reines CRUD ohne Run-Button (has_run_buttons=False, has_toggle=False). #} {% import 'partials/components/mobile_card_macros.html' as mc %} {% if cfg %} {% for item_id, item in cfg.items() %} {% set _footer %}{{ mc.m_card_actions_default(module, item_id, item, container_id, loading_id, card_actions=_card_actions) }}{% endset %} {% call mc.m_card(item.get('description') or item_id, status=item.get('last_status'), footer=_footer) %} {{ mc.m_card_row('Cron', item.get('cron')) }} {{ mc.m_card_row('Nächster Lauf', item.get('next_run')) }} {{ mc.m_card_row('Letzter Lauf', item.get('last_run')) }} {{ mc.m_card_row('Dauer', item.get('last_duration')) }} {% endcall %} {% endfor %} {% else %}
Keine Einträge vorhanden
Erstelle den ersten Eintrag mit „Neu"
{% endif %}