15 lines
410 B
Python
15 lines
410 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.template.loader import render_to_string
|
|
|
|
|
|
class SourceColumnLinkWidget(object):
|
|
template_name = 'navigation/source_column_link_widget.html'
|
|
|
|
def render(self, name=None, value=None):
|
|
return render_to_string(
|
|
template_name=self.template_name, context={
|
|
'column': self.column, 'value': value
|
|
}
|
|
)
|