Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from django.utils.translation import gettext_lazy as _ 

2 

3TAB_TYPE_CHOICES = ( 

4 ('full-width', _('Full Width')), 

5 ('full-width-black', _('Full Width Black')), 

6 ('sidebar', _('Sidebar')), 

7 ('in-page', _('In Page')), 

8) 

9 

10STAFF_LISTING_CHOICES = ( 

11 ('default', _('Default')), 

12 ('min', _('Min')), 

13 ('detailed', _('Detailed')), 

14)