You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
xmrauctions/sales/templatetags/search_block_explorer.py

11 lines
247 B
Python

from django import template
from django.conf import settings
register = template.Library()
@register.filter(is_safe=True)
def search_block_explorer(param):
search_url = f'{settings.BLOCK_EXPLORER}search?value={param}'
return search_url