web/views/old_calendar.py
branchstable
changeset 4244 2c3de1953d00
parent 4212 ab6573088b4a
child 4252 6c4f109c2b03
equal deleted inserted replaced
4243:2621de25d15a 4244:2c3de1953d00
    24                ]
    24                ]
    25 
    25 
    26 class _CalendarView(EntityView):
    26 class _CalendarView(EntityView):
    27     """base calendar view containing helpful methods to build calendar views"""
    27     """base calendar view containing helpful methods to build calendar views"""
    28     __select__ = implements(ICalendarViews,)
    28     __select__ = implements(ICalendarViews,)
    29     need_navigation = False
    29     paginable = False
    30 
    30 
    31     # Navigation building methods / views ####################################
    31     # Navigation building methods / views ####################################
    32 
    32 
    33     PREV = u'<a href="%s">&lt;&lt;</a>&#160;&#160;<a href="%s">&lt;</a>'
    33     PREV = u'<a href="%s">&lt;&lt;</a>&#160;&#160;<a href="%s">&lt;</a>'
    34     NEXT = u'<a href="%s">&gt;</a>&#160;&#160;<a href="%s">&gt;&gt;</a>'
    34     NEXT = u'<a href="%s">&gt;</a>&#160;&#160;<a href="%s">&gt;&gt;</a>'