Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
iPPIDB
ippidb-web
Commits
8a7fda8d
Commit
8a7fda8d
authored
Jan 04, 2022
by
Hervé MENAGER
Browse files
fix code style
parent
e1e2eb31
Pipeline
#72638
passed with stage
in 12 minutes and 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
ippisite/ippidb/urls.py
View file @
8a7fda8d
...
...
@@ -61,8 +61,16 @@ urlpatterns = [
name
=
"physicochemistry"
,
),
re_path
(
r
"^about-pca/$"
,
views
.
about_pca
,
name
=
"pca"
),
re_path
(
r
"^about-contributors/$"
,
views
.
ContributorListView
.
as_view
(),
name
=
"contributors"
),
re_path
(
r
"^about-contributors/(?P<pk>\d+)$"
,
views
.
ContributorDetailView
.
as_view
(),
name
=
"contributor_card"
),
re_path
(
r
"^about-contributors/$"
,
views
.
ContributorListView
.
as_view
(),
name
=
"contributors"
,
),
re_path
(
r
"^about-contributors/(?P<pk>\d+)$"
,
views
.
ContributorDetailView
.
as_view
(),
name
=
"contributor_card"
,
),
re_path
(
r
"^targetcentric/$"
,
views
.
PDBView
.
as_view
(),
name
=
"cavities"
),
re_path
(
r
"^targetcentric/networks$"
,
views
.
NetworkView
.
as_view
(),
name
=
"networks"
),
re_path
(
r
"^api/"
,
include
(
ROUTER
.
urls
)),
...
...
@@ -107,4 +115,5 @@ urlpatterns += staticfiles_urlpatterns()
if
settings
.
DEBUG
:
import
debug_toolbar
urlpatterns
=
[
re_path
(
r
"^__debug__/"
,
include
(
debug_toolbar
.
urls
))]
+
urlpatterns
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