Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
added move to homescreen
- Loading branch information
Akhil Nagulavancha
authored and
Akhil Nagulavancha
committed
Jul 22, 2020
1 parent
5c51ebd
commit f6973cf5cb4a04990559efc08e40a60c4f6eee4a
Showing
3 changed files
with
6 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,7 +1,8 @@ | ||
from . import views | ||
from django.conf.urls import url | ||
|
||
app_name='workspace' | ||
urlpatterns = [ | ||
url(r'^storage/$', views.storage), | ||
url(r'^storage/(?P<storage_id>[^/]+)/$', views.resources) | ||
url(r'^storage/$', views.storage,name="storages"), | ||
url(r'^storage/(?P<storage_id>[^/]+)/$', views.resources,name="resources") | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters