Files
vault171/app/views/items/edit.html.erb
David Böhm c12eab7f98
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / system-test (push) Has been cancelled
And again really small layout adjustments
2026-05-30 03:21:16 +02:00

27 lines
1.1 KiB
Plaintext

<% content_for :title, @item.name %>
<!-- OBERE AKTIONSLISTE (Zurück-Button in der Top-Bar) -->
<% content_for :top_bar_actions do %>
<%= link_to "javascript:history.back()", class: "py-2 px-3 text-sm font-medium text-gray-700 bg-white border border-gray-300 rounded-lg hover:bg-gray-50 flex items-center gap-1.5 shadow-sm transition" do %>
<!-- Heroicon: arrow-left -->
<svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18" /></svg>
<div class="hidden md:inline">
Zurück
</div>
<% end %>
<% end %>
<div class="space-y-6">
<%= render "form", item: @item %>
<%= render "layouts/danger_zone",
title: "Artikel restlos löschen",
description: "Dieser Artikel wird dauerhaft und unwiderruflich aus der Bestandsliste entfernt. Auch die QR-Code-Zuordnung erlischt.",
button_text: "Artikel löschen",
confirm_message: "Möchtest du diesen Artikel wirklich permanent aus dem System entfernen?",
path: item_path(@item) %>
</div>