From ea58a8632d1e43ffd7858b8723de694ed643c2a9 Mon Sep 17 00:00:00 2001
From: Chris Lawton <chris.lawton@torchbox.com>
Date: Tue, 6 Mar 2018 09:48:10 +0000
Subject: [PATCH] changing time format on listing items not to include dots
 between am and pm

---
 .../apply/activity/templates/activity/include/listing_base.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opentech/apply/activity/templates/activity/include/listing_base.html b/opentech/apply/activity/templates/activity/include/listing_base.html
index 199586cfb..0b874c865 100644
--- a/opentech/apply/activity/templates/activity/include/listing_base.html
+++ b/opentech/apply/activity/templates/activity/include/listing_base.html
@@ -5,7 +5,7 @@
     <div class="feed__content">
         <div class="feed__meta">
             <p class="feed__label feed__label--{{ activity.type }} feed__label--mobile">{{ activity.type|capfirst }}</p>
-            <p class="feed__meta-item">{{ activity.timestamp|date:"m.d.y P e" }}</p>
+            <p class="feed__meta-item">{{ activity.timestamp|date:"m.d.y h:iA e" }}</p>
         </div>
         <div class="feed__heading">
             <h4 class="feed__name">{{ activity.user }}</h4>
-- 
GitLab