codecombat/app/templates/courses/remove-student-modal.jade
phoenixeliot bb6262483f Allow username-only signup for classroom users
Address some code review feedback

Correct error code in test

Don't try to send emails to empty addresses

Add tests for subscriptions

Add tests for Next Steps email

Fix specs

Add reason for disabled test
2016-07-18 10:41:17 -07:00

30 lines
968 B
Text

extends /templates/core/modal-base-flat
block modal-header-content
.text-center
h1.modal-title(data-i18n="courses.remove_student1")
span.glyphicon.glyphicon-warning-sign.text-danger
p
span= view.user.get('name', true)
if view.user.get('email')
span= " — " + view.user.get('email')
h2(data-i18n="courses.are_you_sure")
block modal-body-content
p.text-center
span(data-i18n="courses.remove_description1")
if view.user.isEnrolled()
span(data-i18n="courses.remove_description2")
block modal-footer-content
#remove-student-buttons.text-center
p
button.btn.btn-lg.btn-forest.text-uppercase(data-dismiss="modal", data-i18n="courses.keep_student")
p - OR -
p
button#remove-student-btn.btn.btn-lg.btn-burgandy.text-uppercase(data-i18n="courses.remove_student1")
#remove-student-progress.text-center.hide
.progress
.progress-bar
p.text-info(data-i18n="courses.removing_user")