constants.py 552 B

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