Guest User

Untitled

a guest
Jan 22nd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. from pdn import constants
  2. @register.simple_tag
  3. def get_constant(constant, value, constant_type="CHOICES_DICT"):
  4. try:
  5. return getattr(getattr(constants, constant), constant_type)[int(value)]
  6. except AttributeError:
  7. return "NC"
Add Comment
Please, Sign In to add comment