constants.py 523 B

12345678910111213
  1. NEXT_ISSUE = 'NEXT_ISSUE'
  2. RANGE = 'RANGE'
  3. DATE_EFFECTIVE_CHOICES = (
  4. (NEXT_ISSUE, 'Next issue <span class="fine_print">(for remainder of '
  5. 'subscription)</span>'),
  6. (RANGE, "From <input text='text' size='10' id='from_date' name='from_date'"
  7. "> to <input text='text' size='10' id='to_date' name='to_date'>"))
  8. REASONS_FOR_MESSAGE = (
  9. (0, "Store Feedback"),
  10. (1, "Problem With Store"),
  11. (2, "Problem With Subscription"),
  12. (3, "Missing Order"),
  13. (4, "Missing Subscription"),)