21 lines
1.0 KiB
Plaintext
21 lines
1.0 KiB
Plaintext
- if current_user.try(:admin?) or current_user.try(:teacher?)
|
|
.container
|
|
ul.breadcrumb
|
|
- if model = Kernel.const_get(controller_path.classify) rescue nil
|
|
- object = model.find_by(id: params[:id])
|
|
- if model.try(:nested_resource?)
|
|
li.breadcrumb-item = model.model_name.human(count: 2)
|
|
- if object
|
|
li.breadcrumb-item = object
|
|
- else
|
|
li.breadcrumb-item = link_to_if(policy(model).index?, model.model_name.human(count: 2), send(:"#{model.model_name.collection}_path"))
|
|
- if object
|
|
li.breadcrumb-item = link_to_if(policy(object).show?, object, send(:"#{model.model_name.singular}_path", object))
|
|
li.breadcrumb-item.active
|
|
- if I18n.translation_present?("shared.#{params[:action]}")
|
|
= t("shared.#{params[:action]}")
|
|
- else
|
|
= t("#{controller_name}.index.#{params[:action]}")
|
|
- else
|
|
li.breadcrumb-item.active = t("breadcrumbs.#{controller_name}.#{params[:action]}")
|