Files
once-campfire/app/views/rooms/layouts/_edit.html.erb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

18 lines
454 B
Plaintext

<% @page_title = "Edit settings for #{room.name}" %>
<% content_for :nav do %>
<div class="flex-item-justify-start">
<%= link_back_to_last_room_visited %>
</div>
<% end %>
<section class="panel txt-align-center" style="view-transition-name: edit-room-<%= room.id %>">
<%= yield %>
</section>
<% if Current.user.can_administer?(@room) %>
<section class="panel txt-align-center">
<%= button_to_delete_room room %>
</section>
<% end %>