add more date format for index
This commit is contained in:
parent
cd2865c6b8
commit
18f9611d0a
|
@ -14,7 +14,20 @@ class AnnouncementsController < ApplicationController
|
|||
"title" => a.title,
|
||||
"subtitle" => a.subtitle,
|
||||
"statuses" => statuses,
|
||||
|
||||
"postdate" => a.postdate.strftime("%b %d, %Y at %I:%M %p"),
|
||||
"date" => a.postdate.strftime("%F"),
|
||||
"year" => a.postdate.strftime("%Y"),
|
||||
"month" => a.postdate.strftime("%b"),
|
||||
"month-num" => a.postdate.strftime("%m"),
|
||||
"week" => a.postdate.strftime("%A"),
|
||||
"week-num" => a.postdate.strftime("%u"),
|
||||
"day" => a.postdate.strftime("%d"),
|
||||
"hour" => a.postdate.strftime("%H"),
|
||||
"minute" => a.postdate.strftime("%M"),
|
||||
"second" => a.postdate.strftime("%S"),
|
||||
"meridian" => a.postdate.strftime("%p"),
|
||||
|
||||
"link_to_show" => OrbitHelper.url_to_show(a.to_param),
|
||||
"img_src" => a.image.thumb.url || "http://placehold.it/100x100",
|
||||
"more" => t(:more_plus)
|
||||
|
@ -44,7 +57,20 @@ class AnnouncementsController < ApplicationController
|
|||
"title" => a.title,
|
||||
"subtitle" => a.subtitle,
|
||||
"statuses" => statuses,
|
||||
|
||||
"postdate" => a.postdate.strftime("%d"),
|
||||
"date" => a.postdate.strftime("%F"),
|
||||
"year" => a.postdate.strftime("%Y"),
|
||||
"month" => a.postdate.strftime("%b"),
|
||||
"month-num" => a.postdate.strftime("%m"),
|
||||
"week" => a.postdate.strftime("%A"),
|
||||
"week-num" => a.postdate.strftime("%u"),
|
||||
"day" => a.postdate.strftime("%d"),
|
||||
"hour" => a.postdate.strftime("%H"),
|
||||
"minute" => a.postdate.strftime("%M"),
|
||||
"second" => a.postdate.strftime("%S"),
|
||||
"meridian" => a.postdate.strftime("%p"),
|
||||
|
||||
"link_to_show" => OrbitHelper.widget_item_url(a.to_param),
|
||||
"img_src" => a.image.thumb.url || "http://placehold.it/100x100",
|
||||
}
|
||||
|
@ -71,10 +97,20 @@ class AnnouncementsController < ApplicationController
|
|||
"title" => a.title,
|
||||
"subtitle" => a.subtitle,
|
||||
"statuses" => statuses,
|
||||
"week" => a.postdate.strftime("%A"),
|
||||
"day" => a.postdate.strftime("%d"),
|
||||
"month" => a.postdate.strftime("%b"),
|
||||
|
||||
"postdate" => a.postdate.strftime("%d"),
|
||||
"date" => a.postdate.strftime("%F"),
|
||||
"year" => a.postdate.strftime("%Y"),
|
||||
"month" => a.postdate.strftime("%b"),
|
||||
"month-num" => a.postdate.strftime("%m"),
|
||||
"week" => a.postdate.strftime("%A"),
|
||||
"week-num" => a.postdate.strftime("%u"),
|
||||
"day" => a.postdate.strftime("%d"),
|
||||
"hour" => a.postdate.strftime("%H"),
|
||||
"minute" => a.postdate.strftime("%M"),
|
||||
"second" => a.postdate.strftime("%S"),
|
||||
"meridian" => a.postdate.strftime("%p"),
|
||||
|
||||
"link_to_show" => OrbitHelper.widget_item_url(a.to_param),
|
||||
"img_src" => a.image.thumb.url || "http://placehold.it/100x100",
|
||||
}
|
||||
|
|
|
@ -286,8 +286,9 @@
|
|||
|
||||
<!-- Form Actions -->
|
||||
<div class="form-actions">
|
||||
<%= get_referer_url[:action] rescue "" %>
|
||||
<%= f.submit t('submit'), class: 'btn btn-primary' %>
|
||||
<input type="hidden" name="referer_url" value="<%= request.referer %>">
|
||||
<input type="hidden" name="referer_url" value="<%= get_referer_url %>">
|
||||
<%= button_tag t("preview"), id: "button_for_preview", name: "commit", class: 'btn', type: :button %>
|
||||
<%= link_to t('cancel'), admin_announcements_path, :class=>"btn" %>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue