diff --git a/templates/web/api/auth/native_app_access_token.html.twig b/templates/web/api/auth/native_app_access_token.html.twig
index f61fcf25bb..61f0ed08bd 100644
--- a/templates/web/api/auth/native_app_access_token.html.twig
+++ b/templates/web/api/auth/native_app_access_token.html.twig
@@ -34,7 +34,7 @@
-
{{home_title}}
+ {{ app['phraseanet.registry'].get('GV_homeTitle') }}
{% if user is not none %}
diff --git a/templates/web/common/analytics.html.twig b/templates/web/common/analytics.html.twig
index 97059d1095..fe6249702e 100644
--- a/templates/web/common/analytics.html.twig
+++ b/templates/web/common/analytics.html.twig
@@ -1,8 +1,8 @@
-{% if registry.get('GV_googleAnalytics') != '' %}
+{% if app['phraseanet.registry'].get('GV_googleAnalytics') != '' %}
diff --git a/templates/web/common/indexfloat.html.twig b/templates/web/common/indexfloat.html.twig
index 44054f01f5..7511752cfc 100644
--- a/templates/web/common/indexfloat.html.twig
+++ b/templates/web/common/indexfloat.html.twig
@@ -2,8 +2,8 @@
-
{% if local_title is defined%}{{local_title}} | {% endif %}{{home_title}} - {{ module_name }}
-
+
{% if local_title is defined%}{{local_title}} | {% endif %}{{ app['phraseanet.registry'].get('GV_homeTitle') }} - {{ module_name }}
+
{% block stylesheet %}{% endblock %}
{% block icon %}{% endblock %}
{% block rss %}{% endblock %}
diff --git a/templates/web/common/menubar.html.twig b/templates/web/common/menubar.html.twig
index 4fed4ae39d..1aaea4f260 100644
--- a/templates/web/common/menubar.html.twig
+++ b/templates/web/common/menubar.html.twig
@@ -33,7 +33,7 @@
{% endif %}
- {% if app['browser'].isNewGeneration and registry.get('GV_thesaurus') == true and app['phraseanet.user'].ACL.has_access_to_module('thesaurus') %}
+ {% if app['browser'].isNewGeneration and app['phraseanet.registry'].get('GV_thesaurus') == true and app['phraseanet.user'].ACL.has_access_to_module('thesaurus') %}
diff --git a/templates/web/developers/application.html.twig b/templates/web/developers/application.html.twig
index c31c1eafe4..8955491554 100644
--- a/templates/web/developers/application.html.twig
+++ b/templates/web/developers/application.html.twig
@@ -47,11 +47,11 @@
Authorize endpoint |
- {{registry.get('GV_ServerName')}}api/oauthv2/authorize |
+ {{app['phraseanet.registry'].get('GV_ServerName')}}api/oauthv2/authorize |
Access endpoint |
- {{registry.get('GV_ServerName')}}api/oauthv2/token |
+ {{app['phraseanet.registry'].get('GV_ServerName')}}api/oauthv2/token |
{% trans 'Activer le grant_type de type password pour votre application' %} |
diff --git a/templates/web/login/head.html.twig b/templates/web/login/head.html.twig
index 60aa7ef6d2..993203e140 100644
--- a/templates/web/login/head.html.twig
+++ b/templates/web/login/head.html.twig
@@ -1,7 +1,7 @@
{{module_name}}
-
+
-
+
{% for feed in feeds %}
diff --git a/templates/web/login/index.html.twig b/templates/web/login/index.html.twig
index dbb60820f5..278652e304 100644
--- a/templates/web/login/index.html.twig
+++ b/templates/web/login/index.html.twig
@@ -3,7 +3,7 @@
{% include 'login/head.html.twig' %}
- {{meta_description}}
+ {{ app['phraseanet.registry'].get('GV_metaDescription') }}