app/django/contrib/localflavor/au/au_states.py
changeset 54 03e267d67478
equal deleted inserted replaced
53:57b4279d8c4e 54:03e267d67478
       
     1 """
       
     2 An alphabetical list of states for use as `choices` in a formfield.
       
     3 
       
     4 This exists in this standalone file so that it's only imported into memory
       
     5 when explicitly needed.
       
     6 """
       
     7 
       
     8 STATE_CHOICES = (
       
     9     ('ACT', 'Australian Capital Territory'),
       
    10     ('NSW', 'New South Wales'),
       
    11     ('NT', 'Northern Territory'),
       
    12     ('QLD', 'Queensland'),
       
    13     ('SA', 'South Australia'),
       
    14     ('TAS', 'Tasmania'),
       
    15     ('VIC', 'Victoria'),
       
    16     ('WA', 'Western Australia'),
       
    17 )