mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 22:33:09 +00:00
8 lines
193 B
Python
8 lines
193 B
Python
from django.conf.urls import include, url
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from .views import my_view
|
|
|
|
urlpatterns = [
|
|
url(_(r'^$'), my_view, name='bar.my_view'),
|
|
]
|