mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
44 lines
1.2 KiB
Text
44 lines
1.2 KiB
Text
- unless CONFIG['authentication']['ichain']['enabled']
|
|
%li
|
|
= link_to(edit_user_registration_path) do
|
|
%span.fa.fa-wrench
|
|
Edit Account
|
|
%li
|
|
= link_to(edit_user_path(current_user.id)) do
|
|
%span.fa.fa-user
|
|
Edit Profile
|
|
-if @conference and @conference.id
|
|
%li
|
|
= link_to(conference_proposal_index_path(@conference.short_title)) do
|
|
%span.fa.fa-comment
|
|
My Submissions
|
|
%li
|
|
- if CONFIG['authentication']['ichain']['enabled']
|
|
= link_to(destroy_user_ichain_session_path, :method=>'delete') do
|
|
%span.fa.fa-minus
|
|
Sign out
|
|
- else
|
|
= link_to(destroy_user_session_path, :method=>'delete') do
|
|
%span.fa.fa-minus
|
|
Sign out
|
|
- if can? :index, Conference
|
|
%li.divider
|
|
%li
|
|
= link_to(admin_conference_index_path()) do
|
|
- if Conference.any?
|
|
%span.fa.fa-home
|
|
Administration
|
|
- else
|
|
%span.fa.fa-plus
|
|
Create Conference
|
|
-if @conference and @conference.id and can? :show, @conference
|
|
%li
|
|
= link_to(admin_conference_path(@conference.short_title)) do
|
|
%span.fa.fa-cog
|
|
Manage
|
|
= @conference.short_title
|
|
- if can? :index, User
|
|
%li
|
|
= link_to(admin_users_path) do
|
|
%span.fa.fa-user
|
|
Users
|