Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
GeoInt_SIDT
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mario Chirinos Colunga
GeoInt_SIDT
Commits
9c9b44b5
Commit
9c9b44b5
authored
Jul 10, 2017
by
Mario Chirinos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
8d741510
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
3 deletions
+10
-3
urls.py
GeoInt_SIDT/urls.py
+8
-1
__init__.py
catalog/__init__.py
+0
-0
admin.py
catalog/admin.py
+0
-0
apps.py
catalog/apps.py
+2
-2
__init__.py
catalog/migrations/__init__.py
+0
-0
models.py
catalog/models.py
+0
-0
tests.py
catalog/tests.py
+0
-0
views.py
catalog/views.py
+0
-0
No files found.
GeoInt_SIDT/urls.py
View file @
9c9b44b5
...
@@ -16,6 +16,13 @@ Including another URLconf
...
@@ -16,6 +16,13 @@ Including another URLconf
from
django.conf.urls
import
url
from
django.conf.urls
import
url
from
django.contrib
import
admin
from
django.contrib
import
admin
from
django.conf.urls
import
include
from
django.views.generic
import
RedirectView
from
django.conf
import
settings
from
django.conf.urls.static
import
static
urlpatterns
=
[
urlpatterns
=
[
url
(
r'^admin/'
,
admin
.
site
.
urls
),
url
(
r'^admin/'
,
admin
.
site
.
urls
),
]
url
(
r'^catalog/'
,
include
(
'catalog.urls'
)),
url
(
r'^$'
,
RedirectView
.
as_view
(
url
=
'/catalog/'
,
permanent
=
True
)),
]
+
static
(
settings
.
STATIC_URL
,
document_root
=
settings
.
STATIC_ROOT
)
sidtSite
/__init__.py
→
catalog
/__init__.py
View file @
9c9b44b5
File moved
sidtSite
/admin.py
→
catalog
/admin.py
View file @
9c9b44b5
File moved
sidtSite
/apps.py
→
catalog
/apps.py
View file @
9c9b44b5
...
@@ -4,5 +4,5 @@ from __future__ import unicode_literals
...
@@ -4,5 +4,5 @@ from __future__ import unicode_literals
from
django.apps
import
AppConfig
from
django.apps
import
AppConfig
class
Sidtsite
Config
(
AppConfig
):
class
Catalog
Config
(
AppConfig
):
name
=
'
sidtSite
'
name
=
'
catalog
'
sidtSite
/migrations/__init__.py
→
catalog
/migrations/__init__.py
View file @
9c9b44b5
File moved
sidtSite
/models.py
→
catalog
/models.py
View file @
9c9b44b5
File moved
sidtSite
/tests.py
→
catalog
/tests.py
View file @
9c9b44b5
File moved
sidtSite
/views.py
→
catalog
/views.py
View file @
9c9b44b5
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment