From 8003b1cf364329386bf3ea20edf52a26d7c22f6b Mon Sep 17 00:00:00 2001 From: Thijs Kinkhorst <thijs@kinkhorst.com> Date: Thu, 17 Oct 2019 13:34:43 +0000 Subject: [PATCH] Add missing twig template for authsource list in old core module Closes: #1217 --- modules/core/templates/authsource_list.twig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modules/core/templates/authsource_list.twig diff --git a/modules/core/templates/authsource_list.twig b/modules/core/templates/authsource_list.twig new file mode 100644 index 000000000..a3654e915 --- /dev/null +++ b/modules/core/templates/authsource_list.twig @@ -0,0 +1,11 @@ +{% set pagetitle = 'Test Authentication Sources'|trans %} +{% extends "base.twig" %} + +{% block content %} + <h2>{{ pagetitle }} </h2> + <ul> + {% for key, name in sources %} + <li><a href="?as={{ name|escape('url') }}">{{ name }}</a></li> + {% endfor %} + </ul> +{% endblock %} -- GitLab