preparation for python3
This commit is contained in:
@@ -21,8 +21,10 @@ mondumas.egg-info/top_level.txt
|
||||
mondumas/models/__init__.py
|
||||
mondumas/models/agenda.py
|
||||
mondumas/models/default.py
|
||||
mondumas/models/parametres.py
|
||||
mondumas/scripts/__init__.py
|
||||
mondumas/views/__init__.py
|
||||
mondumas/views/agenda.py
|
||||
mondumas/views/default.py
|
||||
mondumas/views/notfound.py
|
||||
mondumas/views/notfound.py
|
||||
mondumas/views/parametres.py
|
||||
@@ -9,6 +9,8 @@ transaction
|
||||
zope.sqlalchemy
|
||||
waitress
|
||||
MySQL-python
|
||||
python-dateutil
|
||||
docutils
|
||||
|
||||
[testing]
|
||||
WebTest>=1.3.1
|
||||
|
||||
@@ -56,7 +56,7 @@
|
||||
<button class="btn btn-primary" type="submit" name="form.submitted">
|
||||
<span class="glyphicon glyphicon-ok"></span> Enregistrer</button>
|
||||
<button class="btn btn-warning" type="submit" name="form.deleted"
|
||||
tal:condition="python: nolig <> '0'">
|
||||
tal:condition="python: nolig != '0'">
|
||||
<span class="glyphicon glyphicon-remove"></span> Supprimer</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user