<% # 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 . set_active_tab "settings" js_bundle :account_settings css_bundle :account_settings, :reports, :tinymce provide :page_title, t(:page_title, "Account Settings") js_env( :ACCOUNT => { 'id' => @context.id, 'site_admin' => @account.site_admin?, 'root_account' => @account.root_account? }.tap do |h| if can_do(@context, @current_user, :manage_storage_quotas) h.merge!( 'default_storage_quota_mb' => @context.default_storage_quota_mb, 'default_user_storage_quota_mb' => @context.default_user_storage_quota_mb, 'default_group_storage_quota_mb' => @context.default_group_storage_quota_mb ) end end ) %> <% provide :right_side do %> <%= render :partial => "additional_settings_right_side" %> <% end %>

<%= t(:page_header_title, "Account Settings") %>