summaryrefslogtreecommitdiff
path: root/web/templates/index.html
diff options
context:
space:
mode:
authorDominic DiTaranto <domdit@gmail.com>2024-10-29 12:22:12 -0400
committerDominic DiTaranto <domdit@gmail.com>2024-10-29 12:22:12 -0400
commit1cf1bba356ee6f741089a4d63344f718d74acc2f (patch)
tree71b0529c1b8dd618242e9656f3b1c01dc39c13dc /web/templates/index.html
parent6a895e489a4a5eb74085b7980f293d7a24c92c92 (diff)
fixing times
Diffstat (limited to 'web/templates/index.html')
-rw-r--r--web/templates/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/templates/index.html b/web/templates/index.html
index 5f2150b..013ef3f 100644
--- a/web/templates/index.html
+++ b/web/templates/index.html
@@ -16,8 +16,8 @@
<tr>
<td><a href="{% url 'event' event.id %}">{{event.name}}</a></td>
<td>{{event.responses}}</td>
- <td>{{event.start_date}}</td>
- <td>{{event.end_date}}</td>
+ <td>{{event.start_date|date:"m/d/Y"}}</td>
+ <td>{{event.end_date|date:"m/d/Y"}}</td>
</tr>
{% endfor %}
</tbody>