|
@@ -2,6 +2,8 @@
|
|
|
{% load i18n %}
|
|
{% load i18n %}
|
|
|
{% if customfield.type == 'integer' and value is not None %}
|
|
{% if customfield.type == 'integer' and value is not None %}
|
|
|
{{ value }}
|
|
{{ value }}
|
|
|
|
|
+{% elif customfield.type == 'decimal' and value is not None %}
|
|
|
|
|
+ {{ value }}
|
|
|
{% elif customfield.type == 'longtext' and value %}
|
|
{% elif customfield.type == 'longtext' and value %}
|
|
|
{{ value|markdown }}
|
|
{{ value|markdown }}
|
|
|
{% elif customfield.type == 'boolean' and value == True %}
|
|
{% elif customfield.type == 'boolean' and value == True %}
|