
# Conflicts: # app/views/application/_breadcrumbs.html.slim # app/views/application/welcome.html.slim # app/views/exercise_collections/show.html.slim # app/views/external_users/index.html.slim # app/views/layouts/application.html.slim # app/views/proxy_exercises/index.html.slim # app/views/user_exercise_feedbacks/index.html.slim # app/views/user_mailer/send_thank_you_note.slim
9 lines
419 B
Plaintext
9 lines
419 B
Plaintext
h1 = t('.title', application_name: application_name)
|
|
|
|
- if current_user.try(:admin?) or current_user.try(:teacher?)
|
|
p = t('.text_signed_in_as_internal_user', user_name: current_user.displayname)
|
|
- elsif current_user.try(:external_user?)
|
|
p = t('.text_signed_in_as_external_user', application_name: application_name)
|
|
- else
|
|
p == t('.text_signed_out', application_name: application_name, sign_in_path: sign_in_path)
|