Skip to content

Commit

Permalink
do not remove spaces in alarmkey field "Schlagwort/Meldebild"
Browse files Browse the repository at this point in the history
  • Loading branch information
seiferta committed Feb 11, 2017
1 parent 47bd1e1 commit 7a9fc90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
</div>
<p style="clear:left">
<label style="width:99%">{{ _('alarms.key') }}:<br/>
<input type="text" name="edit_key" id="edit_key" value="{%- if alarm.id!='None' %}{%- if alarm.key.id != 0 %}{{ alarm.key.category }}: {%- endif %}{{ alarm.key.key }}{%- endif %}" style="width:100%;"/>
<input type="text" name="edit_key" id="edit_key" value="{%- if alarm.id!='None' %}{% if alarm.key.id != 0 %}{{ alarm.key.category }}: {% endif %}{{ alarm.key.key }}{%- endif %}" style="width:100%;"/>
</label>
<input type="hidden" name="edit_keyid" id="edit_keyid" value="{% if alarm.key %}{{ alarm.key.id }}{% endif %}"/>

Expand Down

0 comments on commit 7a9fc90

Please sign in to comment.