12 lines
355 B
Python
12 lines
355 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'
|
|
)
|
|
link_search_again = Link(text=_('Search again'), view='search:search_again')
|