preparation for python3

This commit is contained in:
2018-11-15 14:07:47 +01:00
parent bebd345a43
commit 27ef92edb6
4 changed files with 8 additions and 4 deletions

View File

@@ -56,14 +56,14 @@
<div class="form-group">
<div class="col-xs-offset-2 col-xs-7 checkbox">
<label><input type="checkbox" name="agenda" value="individu.agenda" id="agenda"
tal:attributes="checked individu.agenda <> 0 and 'checked' or None">Peut prendre des rendez-vous
tal:attributes="checked individu.agenda != 0 and 'checked' or None">Peut prendre des rendez-vous
</label>
</div>
</div>
<div class="form-group">
<div class="col-xs-offset-2 col-xs-7 checkbox">
<label><input type="checkbox" name="actif" value="individu.actif" id="actif"
tal:attributes="checked individu.actif <> 0 and 'checked' or None">La fiche est active
tal:attributes="checked individu.actif != 0 and 'checked' or None">La fiche est active
</label>
</div>
</div>