14 lines
387 B
Twig
14 lines
387 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Hello InterventionController!{% endblock %}
|
|
|
|
{% block body %}
|
|
{% for intervention in interventions %}
|
|
{{ intervention.Wording }}
|
|
{{ intervention.Timestamp|date('Y-m-d H:i:s') }} {{ intervention.Description }}
|
|
{{ intervention.Address }}
|
|
{{ intervention.Status }}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|