11 lines
278 B
Python
11 lines
278 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from navigation import Link
|
|
|
|
link_search = Link(text=_('Search'), view='search:search')
|
|
link_search_advanced = Link(
|
|
text=_('Advanced search'), view='search:search_advanced'
|
|
)
|