From a3d678b9cdfb2883732dd896dc2d6adddd98d58b Mon Sep 17 00:00:00 2001 From: Kagamino Date: Thu, 20 Dec 2018 00:09:40 +0100 Subject: [PATCH] add boolean icons in account template --- core/templates/core/account.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templates/core/account.html b/core/templates/core/account.html index a8d50a8..918993b 100644 --- a/core/templates/core/account.html +++ b/core/templates/core/account.html @@ -42,7 +42,7 @@ {% for field, value in data %}

{{ field }}

-

{{ value }}

+

{% if value == True %}{% elif value == False %}{% else %}{{ value }}{% endif %}

{% endfor %} -- GitLab