Renamed Plottauftrag to Druckauftrag

This commit is contained in:
2024-09-09 15:08:05 +02:00
parent c101bc395d
commit 64116ed292
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
<%#= render partial: 'layouts/flash' %> <%#= render partial: 'layouts/flash' %>
<% content_for :title, "Current Print Jobs" %> <% content_for :title, "Current Print Jobs" %>
<div class="flex items-center justify-between py-4"> <div class="flex items-center justify-between py-4">
<h1 class="text-4xl font-bold text-hsrm-gray">Aktuelle Plottaufträge <span class="text-sm font-semibold"><%= Date.today.strftime("%d.%m.%Y") %></span></h1> <h1 class="text-4xl font-bold text-hsrm-gray">Aktuelle Druckaufträge <span class="text-sm font-semibold"><%= Date.today.strftime("%d.%m.%Y") %></span></h1>
<%= link_to "Plottauftrag aufgeben", new_job_path, class: "px-3 py-2 bg-hsrm-red drop-shadow-lg transition-colors hover:bg-hsrm-red-light text-white block font-medium" %> <%= link_to "Plottauftrag aufgeben", new_job_path, class: "px-3 py-2 bg-hsrm-red drop-shadow-lg transition-colors hover:bg-hsrm-red-light text-white block font-medium" %>
</div> </div>
<div class="min-w-full overflow-auto shadow-lg"> <div class="min-w-full overflow-auto shadow-lg">

View File

@@ -1,5 +1,5 @@
<div class="mx-auto md:w-2/3 w-full"> <div class="mx-auto md:w-2/3 w-full">
<h1 class="font-bold text-4xl">Plottauftrag erteillen</h1> <h1 class="font-bold text-4xl">Druckauftrag aufgeben</h1>
<%= render "form", job: @job %> <%= render "form", job: @job %>
<%= link_to "Zurück zur Übersicht", jobs_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %> <%= link_to "Zurück zur Übersicht", jobs_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
</div> </div>