12 lines
329 B
Python
12 lines
329 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from navigation import Link
|
|
|
|
link_api = Link(icon='fa fa-plug', text=_('REST API'), view='rest_api:api-root')
|
|
link_api_documentation = Link(
|
|
icon='fa fa-book', text=_('API Documentation'),
|
|
view='django.swagger.base.view'
|
|
)
|