From 1a618fa14b603191ac8c95e85a3f7df62d4099fb Mon Sep 17 00:00:00 2001
From: f00wl <f00wl@felinn.org>
Date: Fri, 19 Mar 2021 19:14:53 +0100
Subject: [PATCH] fix #76

---
 hiboo/application/templates/application_peertube.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hiboo/application/templates/application_peertube.html b/hiboo/application/templates/application_peertube.html
index 2128c25..5966d10 100644
--- a/hiboo/application/templates/application_peertube.html
+++ b/hiboo/application/templates/application_peertube.html
@@ -6,10 +6,10 @@
 <dd><pre>{{ url_for("sso.oidc_discovery", service_uuid=service.uuid, _external=True) }}</pre></dd>
 
 <dt>Client ID</dt>
-<dd><pre>service.config["client_id"]</pre></dd>
+<dd><pre>{{ service.config["client_id"] }}</pre></dd>
 
 <dt>Client secret</dt>
-<dd><pre>service.config["client_secret"]</pre></dd>
+<dd><pre>{{ service.config["client_secret"] }}</pre></dd>
 
 <dt>Scope</dt>
 <dd><pre>openid email profile</pre></dd>
@@ -20,4 +20,4 @@
 <dt>Email property</dt>
 <dd><pre>email</pre></dd>
 
-{% include "application_oidc.html" %}
\ No newline at end of file
+{% include "application_oidc.html" %}
-- 
GitLab