3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-09 18:45:32 +00:00
coope/users/templatetags/users_extra.py

10 lines
153 B
Python

import random
from django import template
register = template.Library()
@register.simple_tag
def random_filter(a, b):
return random.randint(a, b)