diff options
-rw-r--r-- | templates/web/base/admin/category_edit.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/base/admin/category_edit.html b/templates/web/base/admin/category_edit.html index d1a323819..5eb3c943e 100644 --- a/templates/web/base/admin/category_edit.html +++ b/templates/web/base/admin/category_edit.html @@ -32,7 +32,7 @@ [% FOR meta IN contact.get_metadata_for_input %] <li> [% meta.order %], <code>[% meta.code %]</code>, [% meta.datatype %], - [% meta.required ? loc('required') : loc('optional') %] + [% meta.required == 'true' ? loc('required') : loc('optional') %] <br><small>[% meta.description %]</small> [% IF meta.variable != 'false' AND meta.exists('values') %] <ul> |