diff options
Diffstat (limited to 'client/templates')
-rw-r--r-- | client/templates/client/doc_create.html | 10 | ||||
-rw-r--r-- | client/templates/client/doc_edit.html | 10 |
2 files changed, 18 insertions, 2 deletions
diff --git a/client/templates/client/doc_create.html b/client/templates/client/doc_create.html index 71bdbbe..c42fa05 100644 --- a/client/templates/client/doc_create.html +++ b/client/templates/client/doc_create.html @@ -109,7 +109,13 @@ {% endif %} {% if custom_data %} {% for key in keys %} - {% if key.key_extra|first in '!' %} + {% if key.key_extra|is_heading %} + <div class="row"> + <div class="input-field col s12"> + <h6>{{key.key_extra|parse_heading}}</h6> + </div> + </div> + {% elif key.key_extra|is_multiple_choice %} <div class="row"> <div class="col s12"> {% with arr=key.key_extra|parse_multiple_choice %} @@ -123,6 +129,8 @@ {% endwith %} </div> </div> + {% elif key.key_extra|is_checkbox %} + checkbox {% else %} <div class="row"> <div class="input-field col s12"> diff --git a/client/templates/client/doc_edit.html b/client/templates/client/doc_edit.html index 40deb26..2cf3e24 100644 --- a/client/templates/client/doc_edit.html +++ b/client/templates/client/doc_edit.html @@ -65,7 +65,13 @@ {% endif %} {% if custom_data %} {% for key in keys %} - {% if key.key_extra|first in '!' %} + {% if key.key_extra|is_heading %} + <div class="row"> + <div class="input-field col s12"> + <h6>{{key.key_extra|parse_heading}}</h6> + </div> + </div> + {% elif key.key_extra|is_multiple_choice %} <div class="row"> <div class="col s12"> {% with arr=key.key_extra|parse_multiple_choice %} @@ -86,6 +92,8 @@ {% endwith %} </div> </div> + {% elif key.key_extra|is_checkbox %} + checkbox {% else %} <div class="row"> <div class="input-field col s12"> |