diff options
Diffstat (limited to 'app/views/events/without_node.html.erb')
| -rw-r--r-- | app/views/events/without_node.html.erb | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/app/views/events/without_node.html.erb b/app/views/events/without_node.html.erb deleted file mode 100644 index e59eedc7..00000000 --- a/app/views/events/without_node.html.erb +++ /dev/null | |||
| @@ -1,30 +0,0 @@ | |||
| 1 | <h1><%= t(".title") %></h1> | ||
| 2 | |||
| 3 | <%= link_to t(".all_events_link"), events_path %> | ||
| 4 | <%= link_to new_event_path, class: 'action_button' do %> | ||
| 5 | <%= icon("plus", library: "tabler", "aria-hidden": true) %> <%= t("events.index.create_event") %> | ||
| 6 | <% end %> | ||
| 7 | |||
| 8 | <%= will_paginate @events %> | ||
| 9 | |||
| 10 | <table class="events_table"> | ||
| 11 | <tr class="header"> | ||
| 12 | <th><%= t("admin.columns.title") %></th> | ||
| 13 | <th><%= Event.human_attribute_name(:start_time) %></th> | ||
| 14 | <th><%= Event.human_attribute_name(:end_time) %></th> | ||
| 15 | <th><%= Event.human_attribute_name(:allday) %></th> | ||
| 16 | <th><%= Event.human_attribute_name(:url) %></th> | ||
| 17 | <th></th> | ||
| 18 | </tr> | ||
| 19 | |||
| 20 | <% @events.each do |event| %> | ||
| 21 | <tr> | ||
| 22 | <td><%= link_to event.display_title, event %></td> | ||
| 23 | <td><%= admin_datetime(event.start_time) %></td> | ||
| 24 | <td><%= admin_datetime(event.end_time) %></td> | ||
| 25 | <td><%= t("admin.common.#{event.allday ? "yes" : "no"}") %></td> | ||
| 26 | <td><%=h event.url %></td> | ||
| 27 | <td class="url_cell"><span class="truncate"><%= external_url_link(event.url) %></span></td> | ||
| 28 | </tr> | ||
| 29 | <% end %> | ||
| 30 | </table> | ||
