mirror of
https://github.com/ansible/awx.git
synced 2026-02-15 02:00:01 -03:30
Merge pull request #600 from wwitzel3/django111
Upgrade AWX major dependencies
This commit is contained in:
@@ -1,11 +1,17 @@
|
||||
# Copyright (c) 2015 Ansible, Inc.
|
||||
# All Rights Reserved.
|
||||
|
||||
from django.conf import settings
|
||||
from django.conf.urls import *
|
||||
|
||||
urlpatterns = patterns('awx.ui.views',
|
||||
url(r'^$', 'index', name='index'),
|
||||
url(r'^migrations_notran/$', 'migrations_notran', name='migrations_notran'),
|
||||
url(r'^portal/$', 'portal_redirect', name='portal_redirect'),
|
||||
from django.conf.urls import url
|
||||
from awx.ui.views import (
|
||||
index,
|
||||
portal_redirect,
|
||||
migrations_notran,
|
||||
)
|
||||
|
||||
|
||||
app_name = 'ui'
|
||||
urlpatterns = [
|
||||
url(r'^$', index, name='index'),
|
||||
url(r'^migrations_notran/$', migrations_notran, name='migrations_notran'),
|
||||
url(r'^portal/$', portal_redirect, name='portal_redirect'),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user