mirror of
https://github.com/jazzband/django-axes.git
synced 2026-05-19 21:01:53 +00:00
7 lines
124 B
Python
7 lines
124 B
Python
from django.conf.urls import url
|
|
from django.contrib import admin
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^admin/', admin.site.urls),
|
|
]
|