From 92291b4692864aad0aa4806eaf71e6e1cb354673 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 10 Oct 2014 14:24:27 -0400 Subject: Drop custom FAS template The form and fas template are identical so just drop the fas.html template and use the default. Signed-off-by: Simo Sorce Reviewed-by: Patrick Uiterwijk --- ipsilon/login/authfas.py | 2 +- templates/login/fas.html | 44 -------------------------------------------- 2 files changed, 1 insertion(+), 45 deletions(-) delete mode 100644 templates/login/fas.html diff --git a/ipsilon/login/authfas.py b/ipsilon/login/authfas.py index 36918ec..8f05e82 100755 --- a/ipsilon/login/authfas.py +++ b/ipsilon/login/authfas.py @@ -162,7 +162,7 @@ Form based login Manager that uses the Fedora Authentication Server self.fpc = FasProxyClient(base_url=self.fas_url, useragent=self.user_agent, insecure=(self.insecure == 'YES')) - self.page = FAS(site, self, 'login/fas', 'login/fas.html') + self.page = FAS(site, self, 'login/fas') return self.page diff --git a/templates/login/fas.html b/templates/login/fas.html deleted file mode 100644 index 4188ead..0000000 --- a/templates/login/fas.html +++ /dev/null @@ -1,44 +0,0 @@ -{% extends "master.html" %} -{% block main %} - -{% if error %} -
-
-

{{ error }}

-
-
- -{% endif %} - - - -
-

{{description}}

-
- -{% endblock %} -- cgit