123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <%
- # Copyright (C) 2011 - present Instructure, Inc.
- #
- # This file is part of Canvas.
- #
- # Canvas is free software: you can redistribute it and/or modify it under
- # the terms of the GNU Affero General Public License as published by the Free
- # Software Foundation, version 3 of the License.
- #
- # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
- # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
- # details.
- #
- # You should have received a copy of the GNU Affero General Public License along
- # with this program. If not, see <http://www.gnu.org/licenses/>.
- %>
- <% content_for :page_title do %><%= @user.short_name %><% end %>
- <% content_for :right_side do %>
- <div>
- <a href="<%= message_user_path(@user, @context) %>" class="btn button-sidebar-wide">
- <i class="icon-email"></i>
- <%= t 'links.message_user', "Message %{user}", :user => context_user_name(@context, @user) %>
- </a>
- <% if @domain_root_account.try_rescue(:enable_user_notes) and can_do(@user, @current_user, :read_user_notes) %>
- <a href="<%= user_user_notes_path(@user) %>" class="btn button-sidebar-wide">
- <%= t('buttons.faculty_journal_for', 'Faculty Journal for %{user}', :user => context_user_name(@context, @user)) %>
- </a>
- <% end %>
- </div>
- <% end %>
- <div>
- <h1 class="screenreader-only">{{#t}}User Profile{{/t}}</h1>
- <% if @context_account.is_a?(Account) && @context_account.has_outcomes? %>
- <div style="float: right;">
- <div>
- <a href="<%= context_url(@context_account, :context_user_outcomes_results_url, @user.id) %>" class=""><%= t('see_outcomes', 'See Outcome Results for %{user}', :user => @user.short_name) %></a>
- </div>
- </div>
- <% end %>
- <h2><%= @user.short_name %></h2>
- <% content_for :stylesheets do %>
- <style type="text/css" media="screen">
- #user-info-fieldsets{
- margin-bottom: 2em;
- }
- #user-info-fieldsets table th{
- text-align: left;
- padding-right: 2em;
- }
- ul.context_list .subtitle {
- line-height: 1.0em;
- }
- </style>
- <% end %>
- <% css_bundle :roster_user, :context_list %>
- <div id="user-info-fieldsets">
- {{> views/users/name}}
- {{> views/users/logins}}
- <fieldset id="courses" class="">
- <legend>{{#t}}Enrollments{{/t}}</legend>
- <% num_enrollments = 0 %>
- <div style="overflow: hidden; font-size: 0.8em;" id="content">
- <div id="courses_list" style="<%= hidden if @enrollments.empty? %>">
- <h3>{{#t}}Courses{{/t}} <%= count_if_any(@enrollments.count) %></h3>
- <div class="courses" style="font-size: 1.2em">
- <ul class="unstyled_list context_list" style="margin-left: 5px; font-size: 0.9em; margin-bottom: 10px; max-height: 200px; overflow: auto;">
- <% @enrollments.each do |enrollment| %>
- <% num_enrollments += 1 %>
- {{> views/enrollment}}
- <% end %>
- </ul>
- </div>
- </div>
- <% if @user.adminable_accounts && !@user.adminable_accounts.empty? %>
- <h3>{{#t}}Accounts{{/t}} <%= count_if_any(@user.adminable_accounts.count) %></h3>
- <div class="accounts" style="font-size: 1.2em">
- <ul class="unstyled_list context_list" style="margin-left: 5px; font-size: 0.9em; margin-bottom: 10px; max-height: 200px; overflow: auto;">
- <% @user.adminable_accounts.each do |account| %>
- <% num_enrollments += 1 %>
- <li>
- <a href="<%= url_for(account) %>">
- <span class="name ellipsis"><%= account.name %></span>
- <span class="subtitle ellipsis"></span>
- </a>
- </li>
- <% end %>
- </ul>
- </div>
- <% end %>
- <% if !@group_memberships.empty? %>
- <h3>{{#t}}Groups{{/t}} <%= count_if_any(@group_memberships.count) %></h3>
- <div class="groups" style="font-size: 1.2em">
- <ul class="unstyled_list context_list" style="margin-left: 5px; font-size: 0.9em; margin-bottom: 10px; max-height: 200px; overflow: auto;">
- <% @group_memberships.each do |membership| %>
- <% num_enrollments += 1 %>
- <li>
- <a href="<%= group_path(membership.group) %>">
- <span class="name ellipsis"><%= membership.group.name %></span>
- <span class="subtitle ellipsis"><%= membership.group.context.name rescue "" %></span>
- </a>
- </li>
- <% end %>
- </ul>
- </div>
- <% end %>
- <% if num_enrollments == 0 %>
- <div style="font-size: 1.2em;">{{#t}}None yet.{{/t}}</div>
- <% end %>
- </div>
- </fieldset>
- </div>
- <% if can_do(@user, @current_user, :view_statistics) && page_views_enabled? %>
- <h3>
- {{#t}}Page Views{{/t}}
- </h3>
- {{> views/page_views/table}}
- <% end %>
- </div>
- <% js_bundle :user %>
|