Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2016-01-13 20:01:25 +0300
committerRobert Speicher <rspeicher@gmail.com>2016-01-13 20:01:58 +0300
commit55d0323961e4db8d29450f35b169029d51e30bda (patch)
treeae5f48350de7a5395550c3cbf2b2c752bf1bb3d3 /app/views/admin/broadcast_messages
parent843662821ddbf2d06aa2da72ce32717cebecb7c6 (diff)
Remove (invalid) timestamp formatting
Diffstat (limited to 'app/views/admin/broadcast_messages')
-rw-r--r--app/views/admin/broadcast_messages/index.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/broadcast_messages/index.html.haml b/app/views/admin/broadcast_messages/index.html.haml
index 3c4ef4fe428..49e33698b63 100644
--- a/app/views/admin/broadcast_messages/index.html.haml
+++ b/app/views/admin/broadcast_messages/index.html.haml
@@ -27,9 +27,9 @@
%td
= broadcast_message(message)
%td
- = message.starts_at.to_s(:iso861)
+ = message.starts_at
%td
- = message.ends_at.to_s(:iso861)
+ = message.ends_at
%td
= link_to icon('pencil-square-o'), edit_admin_broadcast_message_path(message), title: 'Edit', class: 'btn btn-xs'
= link_to icon('times'), admin_broadcast_message_path(message), method: :delete, remote: true, title: 'Remove', class: 'js-remove-tr btn btn-xs btn-danger'