12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <%
- # 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/>.
- %>
- <%
- @show_cc_prefs = @current_pseudonym &&
- @current_pseudonym.login_count < 10 &&
- @current_user &&
- !@current_user.fake_student? &&
- !@current_user.used_feature?(:cc_prefs)
- %>
- <% if @show_cc_prefs %>
- <div class="ic-notification">
- <div class="ic-notification__icon" role="presentation">
- <i class="icon-info"></i>
- <span class="screenreader-only">
- <%= accessible_message_icon_text("information") %>
- </span>
- </div>
- <div class="ic-notification__content">
- <div class="ic-notification__message">
- <h4 class="ic-notification__title">
- {{#t}}Notifications{{/t}}.
- </h4>
- <span class="notification_message">
- {{#t}}Tell us how and when you would like to be notified of events in Canvas.{{/t}}
- </span>
- </div>
- <div class="ic-notification__actions">
- <%= link_to(t("Notification Preferences"), communication_profile_path, :class => "Button Button--small Button--primary", :role => "button") %>
- </div>
- </div>
- </div>
- <% end %>
|