can now import waitlisted classes into ut reg +

This commit is contained in:
Sriram Hariharan
2019-08-14 09:04:02 -05:00
parent 3459fda4c8
commit e78b6beee4
3 changed files with 28 additions and 13 deletions

View File

@@ -147,9 +147,15 @@ class Template {
static Import = class Import {
static button_text_default = "<span style='font-size:small'>Import to </span><b>UT Reg Plus<b>";
static button_text_default = "<span style='font-size:small'>Import to </span><b>UT Reg +<b>";
static waitlist_button_text_default = "<span style='font-size:small'>Import Waitlists to </span><b>UT Reg +<b>";
static button_success = "Courses Saved!";
static import_button() {
return `<button class='matbut' id='import' style='margin:20px 0px 20px 0px;'>${this.button_text_default}</button><br>`;
return `<button class='matbut' id='import' style='margin:15px 0px;'>${this.button_text_default}</button><br>`;
}
static waitlist_import_button() {
return `<button class='matbut' id='import_waitlist' style='margin:0px'>${this.waitlist_button_text_default}</button><br>`;
}
}