Ignore:
Timestamp:
Feb 3, 2010, 4:22:40 AM (15 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, client
Children:
ce973f1
Parents:
a6806bf
git-author:
Alex Dehnert <adehnert@…> (02/03/10 04:22:40)
git-committer:
Alex Dehnert <adehnert@…> (02/03/10 04:22:40)
Message:

Add list page

File:
1 edited

Legend:

Unmodified
Added
Removed
  • remit/vouchers/models.py

    r248b30b r485673a  
    66
    77APPROVAL_STATES = (
    8     ( 0, 'None'),
     8    ( 0, 'Pending'),
    99    ( 1, 'Approved'),
    1010    (-1, 'Rejected'),
     
    2727    name = models.CharField(max_length=50, verbose_name='short description', )
    2828    description = models.TextField(blank=True, verbose_name='long description', )
     29
     30    class Meta:
     31        permissions = (
     32            ('can_list', 'Can list requests',),
     33        )
    2934
    3035    def __unicode__(self, ):
Note: See TracChangeset for help on using the changeset viewer.