~replaceafill/schooltool/flourish_formviewlet

« back to all changes in this revision

Viewing changes to src/schooltool/person/interfaces.py

  • Committer: Douglas Cerna
  • Date: 2012-02-17 19:33:43 UTC
  • Revision ID: douglascerna@yahoo.com-20120217193343-j9ab0lyo0eiiu38f
Used FormViewlet for the calendar settings overview

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
 
171
171
    # SUNDAY and MONDAY are integers, 6 and 0 respectivley
172
172
    weekstart = Choice(
173
 
        title=_("Week starts on:"),
 
173
        title=_("Week starts on"),
174
174
        vocabulary=vocabulary([(calendar.SATURDAY, _("Saturday")),
175
175
                               (calendar.SUNDAY, _("Sunday")),
176
176
                               (calendar.MONDAY, _("Monday"))]))