# HG changeset patch # User Goffi # Date 1616854551 -3600 # Node ID f7ffdd1aed4c9c4d366587f500561b65d877bdae # Parent fd9b39f5e00a08685f9a0bbc54c195b3dba9875b bulma: fix misplaced `error` directory diff -r fd9b39f5e00a -r f7ffdd1aed4c sat_templates/templates/bulma/default/error/401.html --- a/sat_templates/templates/bulma/default/error/401.html Sat Mar 27 14:41:21 2021 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -{% extends 'error/base.html' %} - -{% block body %} -

{% trans %}Unauthorized{% endtrans %}

-

{% trans %}Sorry, you are not authorized to access this page. An authentication is needed.{% endtrans %}

-{% endblock body %} diff -r fd9b39f5e00a -r f7ffdd1aed4c sat_templates/templates/bulma/default/error/403.html --- a/sat_templates/templates/bulma/default/error/403.html Sat Mar 27 14:41:21 2021 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -{% extends 'error/base.html' %} - -{% block body %} -

{% trans %}Unauthorized{% endtrans %}

-

{% trans %}Sorry, you are not allowed to access this page.{% endtrans %}

-{% endblock body %} diff -r fd9b39f5e00a -r f7ffdd1aed4c sat_templates/templates/bulma/default/error/404.html --- a/sat_templates/templates/bulma/default/error/404.html Sat Mar 27 14:41:21 2021 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -{% extends 'error/base.html' %} - -{% block body %} -

{% trans %}Not Found{% endtrans %}

-

{% trans %}Sorry, we can't find the resource you are trying to access.{% endtrans %}

-{% endblock body %} diff -r fd9b39f5e00a -r f7ffdd1aed4c sat_templates/templates/bulma/default/error/base.html --- a/sat_templates/templates/bulma/default/error/base.html Sat Mar 27 14:41:21 2021 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,7 +0,0 @@ -{% extends 'base/base.html' %} - -{% block title %}{% trans %}Error {{error_code}}{% endtrans %}{% endblock %} -{% block body %} -{% trans %}An error occured while trying to access the resource.{% endtrans %} -{% endblock body %} -{% block footer %}{% endblock %} diff -r fd9b39f5e00a -r f7ffdd1aed4c sat_templates/templates/bulma/error/401.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sat_templates/templates/bulma/error/401.html Sat Mar 27 15:15:51 2021 +0100 @@ -0,0 +1,6 @@ +{% extends 'error/base.html' %} + +{% block body %} +

{% trans %}Unauthorized{% endtrans %}

+

{% trans %}Sorry, you are not authorized to access this page. An authentication is needed.{% endtrans %}

+{% endblock body %} diff -r fd9b39f5e00a -r f7ffdd1aed4c sat_templates/templates/bulma/error/403.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sat_templates/templates/bulma/error/403.html Sat Mar 27 15:15:51 2021 +0100 @@ -0,0 +1,6 @@ +{% extends 'error/base.html' %} + +{% block body %} +

{% trans %}Unauthorized{% endtrans %}

+

{% trans %}Sorry, you are not allowed to access this page.{% endtrans %}

+{% endblock body %} diff -r fd9b39f5e00a -r f7ffdd1aed4c sat_templates/templates/bulma/error/404.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sat_templates/templates/bulma/error/404.html Sat Mar 27 15:15:51 2021 +0100 @@ -0,0 +1,6 @@ +{% extends 'error/base.html' %} + +{% block body %} +

{% trans %}Not Found{% endtrans %}

+

{% trans %}Sorry, we can't find the resource you are trying to access.{% endtrans %}

+{% endblock body %} diff -r fd9b39f5e00a -r f7ffdd1aed4c sat_templates/templates/bulma/error/base.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sat_templates/templates/bulma/error/base.html Sat Mar 27 15:15:51 2021 +0100 @@ -0,0 +1,7 @@ +{% extends 'base/base.html' %} + +{% block title %}{% trans %}Error {{error_code}}{% endtrans %}{% endblock %} +{% block body %} +{% trans %}An error occured while trying to access the resource.{% endtrans %} +{% endblock body %} +{% block footer %}{% endblock %}