|
@@ -8,7 +8,11 @@
|
|
|
<tr>
|
|
|
<td>{{ field }}</td>
|
|
|
<td>
|
|
|
- {% if value != None %}
|
|
|
+ {% if value == True %}
|
|
|
+ <i class="glyphicon glyphicon-ok text-success" title="True"></i>
|
|
|
+ {% elif value == False %}
|
|
|
+ <i class="glyphicon glyphicon-remove text-danger" title="False"></i>
|
|
|
+ {% elif value %}
|
|
|
{{ value }}
|
|
|
{% elif field.required %}
|
|
|
<span class="text-warning">Not defined</span>
|