mirror of
https://github.com/nanoy42/coope
synced 2024-11-04 17:06:27 +00:00
11 lines
383 B
Python
11 lines
383 B
Python
from django.forms.widgets import Select, Input
|
|
from django.template import Context, Template
|
|
from django.template.loader import get_template
|
|
|
|
class SearchField(Input):
|
|
|
|
def render(self, name, value, attrs=None):
|
|
#super().render(name, value, attrs)
|
|
template = get_template('search_field.html')
|
|
context = Context({})
|
|
return template.render(context)
|