aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/Resources/views/default/TrainSchedule.html.twig')
-rw-r--r--app/Resources/views/default/TrainSchedule.html.twig28
1 files changed, 0 insertions, 28 deletions
diff --git a/app/Resources/views/default/TrainSchedule.html.twig b/app/Resources/views/default/TrainSchedule.html.twig
deleted file mode 100644
index efc94ec..0000000
--- a/app/Resources/views/default/TrainSchedule.html.twig
+++ /dev/null
@@ -1,28 +0,0 @@
-{% extends 'base.html.twig' %}
-
-{% block body %}
-<table class="table">
- <thead class="thead">
- <tr class="tr">
- <th>Name</th>
- <th>Time</th>
- <th>Date</th>
- <th>Destination</th>
- <th>AQI</th>
- </tr>
- </thead>
- <tbody class="tbody">
- <tr class="tr">
- {% for table in data %}
- <td class="td">{{ table.name }}</td>
- <td class="td">{{ table.time }}</td>
- <td class="td">{{ table.date }}</td>
- <td class="td">{{ table.finalStop }}</td>
- <td class="td">{{ table.direction }}</td>
- </tr>
- </tbody>
- {% endfor %}
-</table>
-{% endblock %}
-{% block javascripts %}
-{% endblock %} \ No newline at end of file