From fb384880835f9b224a4b45255577b53c99ae8d8d Mon Sep 17 00:00:00 2001 From: "J. Cliff Dyer" Date: Thu, 6 Oct 2016 10:31:09 -0400 Subject: [PATCH] Revert "Move student_account templates into app." This reverts commit 4dc744b1049033272fe995b47d2af760d59410dd. --- lms/envs/common.py | 2 -- .../templates/student_account/access.underscore | 0 .../templates/student_account/account.underscore | 0 .../templates/student_account/account_settings.html | 0 .../templates/student_account/account_settings.underscore | 0 .../student_account/account_settings_section.underscore | 0 .../templates/student_account/finish_auth.html | 0 .../templates/student_account/form_field.underscore | 0 .../templates/student_account/hinted_login.underscore | 0 .../templates/student_account/institution_login.underscore | 0 .../templates/student_account/institution_register.underscore | 0 .../templates/student_account/login.underscore | 0 .../templates/student_account/login_and_register.html | 0 .../templates/student_account/password_reset.underscore | 0 .../templates/student_account/register.underscore | 0 15 files changed, 2 deletions(-) rename lms/{djangoapps/student_account => }/templates/student_account/access.underscore (100%) rename lms/{djangoapps/student_account => }/templates/student_account/account.underscore (100%) rename lms/{djangoapps/student_account => }/templates/student_account/account_settings.html (100%) rename lms/{djangoapps/student_account => }/templates/student_account/account_settings.underscore (100%) rename lms/{djangoapps/student_account => }/templates/student_account/account_settings_section.underscore (100%) rename lms/{djangoapps/student_account => }/templates/student_account/finish_auth.html (100%) rename lms/{djangoapps/student_account => }/templates/student_account/form_field.underscore (100%) rename lms/{djangoapps/student_account => }/templates/student_account/hinted_login.underscore (100%) rename lms/{djangoapps/student_account => }/templates/student_account/institution_login.underscore (100%) rename lms/{djangoapps/student_account => }/templates/student_account/institution_register.underscore (100%) rename lms/{djangoapps/student_account => }/templates/student_account/login.underscore (100%) rename lms/{djangoapps/student_account => }/templates/student_account/login_and_register.html (100%) rename lms/{djangoapps/student_account => }/templates/student_account/password_reset.underscore (100%) rename lms/{djangoapps/student_account => }/templates/student_account/register.underscore (100%) diff --git a/lms/envs/common.py b/lms/envs/common.py index c0676be04b..8d6c33da6c 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -1914,7 +1914,6 @@ INSTALLED_APPS = ( 'lms.djangoapps.grades.apps.GradesConfig', # Student support tools - 'lms.djangoapps.student_account', 'support', # External auth (OpenID, shib) @@ -2106,7 +2105,6 @@ INSTALLED_APPS = ( # additional release utilities to ease automation 'release_util', - ) # Migrations which are not in the standard module "migrations" diff --git a/lms/djangoapps/student_account/templates/student_account/access.underscore b/lms/templates/student_account/access.underscore similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/access.underscore rename to lms/templates/student_account/access.underscore diff --git a/lms/djangoapps/student_account/templates/student_account/account.underscore b/lms/templates/student_account/account.underscore similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/account.underscore rename to lms/templates/student_account/account.underscore diff --git a/lms/djangoapps/student_account/templates/student_account/account_settings.html b/lms/templates/student_account/account_settings.html similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/account_settings.html rename to lms/templates/student_account/account_settings.html diff --git a/lms/djangoapps/student_account/templates/student_account/account_settings.underscore b/lms/templates/student_account/account_settings.underscore similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/account_settings.underscore rename to lms/templates/student_account/account_settings.underscore diff --git a/lms/djangoapps/student_account/templates/student_account/account_settings_section.underscore b/lms/templates/student_account/account_settings_section.underscore similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/account_settings_section.underscore rename to lms/templates/student_account/account_settings_section.underscore diff --git a/lms/djangoapps/student_account/templates/student_account/finish_auth.html b/lms/templates/student_account/finish_auth.html similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/finish_auth.html rename to lms/templates/student_account/finish_auth.html diff --git a/lms/djangoapps/student_account/templates/student_account/form_field.underscore b/lms/templates/student_account/form_field.underscore similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/form_field.underscore rename to lms/templates/student_account/form_field.underscore diff --git a/lms/djangoapps/student_account/templates/student_account/hinted_login.underscore b/lms/templates/student_account/hinted_login.underscore similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/hinted_login.underscore rename to lms/templates/student_account/hinted_login.underscore diff --git a/lms/djangoapps/student_account/templates/student_account/institution_login.underscore b/lms/templates/student_account/institution_login.underscore similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/institution_login.underscore rename to lms/templates/student_account/institution_login.underscore diff --git a/lms/djangoapps/student_account/templates/student_account/institution_register.underscore b/lms/templates/student_account/institution_register.underscore similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/institution_register.underscore rename to lms/templates/student_account/institution_register.underscore diff --git a/lms/djangoapps/student_account/templates/student_account/login.underscore b/lms/templates/student_account/login.underscore similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/login.underscore rename to lms/templates/student_account/login.underscore diff --git a/lms/djangoapps/student_account/templates/student_account/login_and_register.html b/lms/templates/student_account/login_and_register.html similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/login_and_register.html rename to lms/templates/student_account/login_and_register.html diff --git a/lms/djangoapps/student_account/templates/student_account/password_reset.underscore b/lms/templates/student_account/password_reset.underscore similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/password_reset.underscore rename to lms/templates/student_account/password_reset.underscore diff --git a/lms/djangoapps/student_account/templates/student_account/register.underscore b/lms/templates/student_account/register.underscore similarity index 100% rename from lms/djangoapps/student_account/templates/student_account/register.underscore rename to lms/templates/student_account/register.underscore