vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 6cbb683f99385f02ad111ca03530be4c83c1ef1b
parent 92bbb98d48c657450097c86481b594485cc81e1d
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Sat, 19 Jan 2019 22:59:32 +0100

Rename admin templates to match email

Diffstat:
Msrc/api/admin.rs | 6+++---
Msrc/main.rs | 6+++---
Rsrc/static/templates/admin/admin_base.hbs -> src/static/templates/admin/base.hbs | 0
Rsrc/static/templates/admin/admin_login.hbs -> src/static/templates/admin/login.hbs | 0
Rsrc/static/templates/admin/admin_page.hbs -> src/static/templates/admin/page.hbs | 0
5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/api/admin.rs b/src/api/admin.rs @@ -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) } } diff --git a/src/main.rs b/src/main.rs @@ -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 diff --git a/src/static/templates/admin/admin_base.hbs b/src/static/templates/admin/base.hbs diff --git a/src/static/templates/admin/admin_login.hbs b/src/static/templates/admin/login.hbs diff --git a/src/static/templates/admin/admin_page.hbs b/src/static/templates/admin/page.hbs