Files @ 87961c6cee48
Branch filter:

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

brett
templatetags: Add fill_url.

This gives templates an easy way to generate full URLs using host_url.
1
2
3
4
5
6
7
8
from django import template
register = template.Library()

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