summaryrefslogtreecommitdiff
path: root/app/views/nodes/show.html.erb
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-08-03 17:12:34 +0200
committererdgeist <erdgeist@erdgeist.org>2026-08-03 17:12:34 +0200
commit84657fa9d633a7d3e20c10645589061ecebeee3f (patch)
treef4bda793d90193db5002d0f2848dc441e9c65c11 /app/views/nodes/show.html.erb
parenta74e40be88cd1331155c967656e393618e88cd27 (diff)
Render dates, booleans and counts through the locale files
Diffstat (limited to 'app/views/nodes/show.html.erb')
-rw-r--r--app/views/nodes/show.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/nodes/show.html.erb b/app/views/nodes/show.html.erb
index a6167c9e..a94e001c 100644
--- a/app/views/nodes/show.html.erb
+++ b/app/views/nodes/show.html.erb
@@ -195,12 +195,12 @@
195 <div class="info_group_items"> 195 <div class="info_group_items">
196 <div class="info_item"> 196 <div class="info_item">
197 <span class="info_label"><%= t(".last_updated") %></span> 197 <span class="info_label"><%= t(".last_updated") %></span>
198 <%= @page.updated_at %> 198 <%= admin_datetime(@page.updated_at) %>
199 </div> 199 </div>
200 <% if @page.published_at.present? %> 200 <% if @page.published_at.present? %>
201 <div class="info_item"> 201 <div class="info_item">
202 <span class="info_label"><%= @page.public? ? t(".published_at") : t(".will_publish_at") %></span> 202 <span class="info_label"><%= @page.public? ? t(".published_at") : t(".will_publish_at") %></span>
203 <%= @page.published_at %> 203 <%= admin_datetime(@page.published_at) %>
204 </div> 204 </div>
205 <% end %> 205 <% end %>
206 </div> 206 </div>