Method: Pageflow::Admin::EntryTemplatesTab#edit_link

Defined in:
app/views/components/pageflow/admin/entry_templates_tab.rb

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 12.2



37
38
39
40
41
42
43
44
45
# File 'app/views/components/pageflow/admin/entry_templates_tab.rb', line 37

def edit_link(entry_template, site)
  link_to(
    I18n.t('active_admin.edit'),
    edit_admin_site_entry_template_path(
      site,
      entry_template
    )
  )
end