Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/app/views/admin/roles/edit.html.haml
2023-07-23 17:48:16 +02:00

7 lines
372 B
Text

- content_for :page_title do
= t('admin.roles.edit', name: @role.everyone? ? t('admin.roles.everyone') : @role.name)
- content_for :heading_actions do
= link_to t('admin.roles.delete'), admin_role_path(@role), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') }, class: 'button button--destructive' if can?(:destroy, @role)
= render partial: 'form'