Browse Source
Rename admin templates to match email
pull/365/head
Daniel García
6 years ago
No known key found for this signature in database
GPG Key ID: FC8A7D14C3CD543A
5 changed files with
6 additions and
6 deletions
-
src/api/admin.rs
-
src/main.rs
-
src/static/templates/admin/base.hbs
-
src/static/templates/admin/login.hbs
-
src/static/templates/admin/page.hbs
|
|
@ -35,7 +35,7 @@ impl AdminTemplateData { |
|
|
|
fn login(error: Option<String>) -> Self { |
|
|
|
Self { |
|
|
|
users: Vec::new(), |
|
|
|
page_content: String::from("admin/admin_login"), |
|
|
|
page_content: String::from("admin/login"), |
|
|
|
error, |
|
|
|
} |
|
|
|
} |
|
|
@ -43,13 +43,13 @@ impl AdminTemplateData { |
|
|
|
fn admin(users: Vec<Value>) -> Self { |
|
|
|
Self { |
|
|
|
users, |
|
|
|
page_content: String::from("admin/admin_page"), |
|
|
|
page_content: String::from("admin/page"), |
|
|
|
error: None, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
fn render(self) -> Result<String, Error> { |
|
|
|
CONFIG.templates.render("admin/admin_base", &self).map_err(Into::into) |
|
|
|
CONFIG.templates.render("admin/base", &self).map_err(Into::into) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ -352,9 +352,9 @@ fn load_templates(path: String) -> Handlebars { |
|
|
|
reg!("email/pw_hint_some"); |
|
|
|
reg!("email/send_org_invite"); |
|
|
|
|
|
|
|
reg!("admin/admin_base"); |
|
|
|
reg!("admin/admin_login"); |
|
|
|
reg!("admin/admin_page"); |
|
|
|
reg!("admin/base"); |
|
|
|
reg!("admin/login"); |
|
|
|
reg!("admin/page"); |
|
|
|
|
|
|
|
// And then load user templates to overwrite the defaults
|
|
|
|
// Use .hbs extension for the files
|
|
|
|