Files @ 47a30a750ad1
Branch filter:

Location: website/www/conservancy/apps/news/templatetags/min.py

bsturmfels
Sort Python imports with isort
1
2
3
4
5
6
7
8
9
from django import template

register = template.Library()

@register.filter
def min(value, arg):
    if value > arg:
        return arg
    return value