Fixed typo
This commit is contained in:
@@ -4,9 +4,9 @@
|
||||
</div>
|
||||
<div>
|
||||
<p class="my-3">
|
||||
<strong class="mb-1 font-medium">Costumer ID:</strong>
|
||||
<% if job.costumer %>
|
||||
<%= link_to_if allowed_to?(:show?, job.costumer, namespace: :Admin), "#{job.costumer_id} - #{job.costumer.name} (#{job.costumer.email})", admin_user_path(job.costumer) %>
|
||||
<strong class="mb-1 font-medium">customer ID:</strong>
|
||||
<% if job.customer %>
|
||||
<%= link_to_if allowed_to?(:show?, job.customer, namespace: :Admin), "#{job.customer_id} - #{job.customer.name} (#{job.customer.email})", admin_user_path(job.customer) %>
|
||||
<% else %>
|
||||
-
|
||||
<% end %>
|
||||
@@ -37,7 +37,7 @@
|
||||
</p>
|
||||
<p class="my-3">
|
||||
<strong class="mb-1 font-medium">Kunde:</strong>
|
||||
<%= link_to_if job.costumer && allowed_to?(:show? , job.costumer, namespace: :Admin), "#{job.costumer_firstname} #{job.costumer_lastname}", ( job.costumer ? admin_user_path(job.costumer) : "" ) %>
|
||||
<%= link_to_if job.customer && allowed_to?(:show? , job.customer, namespace: :Admin), "#{job.customer_firstname} #{job.customer_lastname}", ( job.customer ? admin_user_path(job.customer) : "" ) %>
|
||||
</p>
|
||||
<p class="my-3">
|
||||
<strong class="mb-1 font-medium">Operator:</strong>
|
||||
|
||||
Reference in New Issue
Block a user