diff options
Diffstat (limited to 'templates/logbookform.html')
-rw-r--r-- | templates/logbookform.html | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/templates/logbookform.html b/templates/logbookform.html index 5286ecf..8d9e86e 100644 --- a/templates/logbookform.html +++ b/templates/logbookform.html @@ -93,8 +93,15 @@ {% if tu %}value="{{tu}}"{% else %}placeholder="0.1" {% endif %} /> <br /><br /> - <label for="who_are_you">Who are you, editing this logbook entry?</label> - <input {% if not user.username %} disabled{% endif %} + Identified login + <input type="checkbox" name="identified_login" onclick="return false" id="id_identified_login" + {% if identified_login %} checked{% endif %} "> + <br /><br /> + + <label for="who_are_you">Who are you, editing this logbook entry?</label> + <input + {% if not user.username %} disabled{% endif %} + {% if identified_login %} readonly{% endif %} label = "Who are you" name = "who_are_you" size ="70" title="Who are you" placeholder="editor's name for version control e.g. 'Animal <mta@gasthof.expo>'" value="{{who_are_you}}" required/> |