3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-17 06:05:32 +00:00
coope/coopeV3/widgets.py

14 lines
419 B
Python

from django.forms.widgets import Input
from django.template import Context, Template
from django.template.loader import get_template
class SearchField:
def __init__(self, url):
self.url = url
def render(self, name, value, attrs=None):
super().render(name, value, attrs)
template = get_template('search_field.html')
context = Context({})
return template.render(context)