From b80eaa2a9f098dc1eea278649f44f8c1c641f53e Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Sat, 8 Nov 2025 22:56:50 +0200 Subject: [PATCH] add csrf, submit, and table for displaying carriers --- templates/carriers.html.twig | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/templates/carriers.html.twig b/templates/carriers.html.twig index e3e842b..d3d50a8 100644 --- a/templates/carriers.html.twig +++ b/templates/carriers.html.twig @@ -4,13 +4,41 @@ Carriers -
- + + + +
+ {% if carriers %} + + + + + + + + + + + + + {% for c in carriers %} + + + + + + + + + {% endfor %} + +
IDCompanyContactEmailPhoneNotes
{{ c.id }}{{ c.companyName }}{{ c.contact_person }}{{ c.email }}{{ c.phone_number }}{{ c.notes }}
+ {% endif %}