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