diff --git a/app/views/templates/_title.html.erb b/app/views/templates/_title.html.erb index c694bb30..df2ac0de 100644 --- a/app/views/templates/_title.html.erb +++ b/app/views/templates/_title.html.erb @@ -66,40 +66,48 @@ <%= button_to button_title(title: t('archive'), disabled_with: t('archiving')[..-4], title_class: 'inline', icon: svg_icon('archive', class: 'w-6 h-6')), template_path(template), class: 'btn btn-outline btn-sm w-full', form_class: 'flex-1', method: :delete %> <% end %> <% if can?(:create, current_account.templates.new(author: current_user)) %> - <%= link_to new_template_clone_path(template), class: 'btn btn-outline btn-sm flex-1', data: { turbo_frame: :modal } do %> - - <%= svg_icon('copy', class: 'w-6 h-6') %> - <%= t('clone') %> - - <% end %> - <% end %> - <% if !template.archived_at? %> - <% if can?(:update, template) %> - <%= link_to edit_template_path(template), class: 'btn btn-outline btn-sm flex-1' do %> +
+ <%= link_to new_template_clone_path(template), class: 'btn btn-outline btn-sm w-full', data: { turbo_frame: :modal } do %> - <%= svg_icon('pencil', class: 'w-6 h-6') %> - <%= t('edit') %> + <%= svg_icon('copy', class: 'w-6 h-6') %> + <%= t('clone') %> <% end %> +
+ <% end %> + <% if !template.archived_at? %> + <% if can?(:update, template) %> +
+ <%= link_to edit_template_path(template), class: 'btn btn-outline btn-sm w-full' do %> + + <%= svg_icon('pencil', class: 'w-6 h-6') %> + <%= t('edit') %> + + <% end %> +
<% elsif can?(:read, template) && !template.archived_at? %> - <%= link_to template_preview_path(template), class: 'btn btn-outline btn-sm flex-1' do %> - - <%= svg_icon('file_text', class: 'w-6 h-6') %> - <%= t('preview') %> - - <% end %> +
+ <%= link_to template_preview_path(template), class: 'btn btn-outline btn-sm w-full' do %> + + <%= svg_icon('file_text', class: 'w-6 h-6') %> + <%= t('preview') %> + + <% end %> +
<% end %> <% end %> <% if template.archived_at? %> <% if can?(:destroy, template) %> - <%= button_to button_title(title: t('restore'), disabled_with: t('restoring')[..-4], icon: svg_icon('rotate', class: 'w-6 h-6')), template_restore_index_path(template), class: 'btn btn-outline btn-sm flex-1' %> - <% end %> - <%= link_to template_preview_path(template), class: 'btn btn-outline btn-sm flex-1' do %> - - <%= svg_icon('file_text', class: 'w-6 h-6') %> - <%= t('preview') %> - + <%= button_to button_title(title: t('restore'), disabled_with: t('restoring')[..-4], icon: svg_icon('rotate', class: 'w-6 h-6')), template_restore_index_path(template), class: 'btn btn-outline btn-sm w-full', form_class: 'flex-1' %> <% end %> +
+ <%= link_to template_preview_path(template), class: 'btn btn-outline btn-sm w-full' do %> + + <%= svg_icon('file_text', class: 'w-6 h-6') %> + <%= t('preview') %> + + <% end %> +
<% end %>