8aaa6e02216f5a454a7bd64c180181dee2eab5cd kent Fri Sep 27 11:21:08 2019 -0700 Implementing wrangler requests as described in versions.txt. Mostly this is trimming some things they felt were unneeded, renaming some fields, splitting apart project-status and wrangling-status, and moving the biological information up to a more visible part of the project details page in the admin. Also there is a tiny bit of experimenting on non-admin views. diff --git src/hca/hcat/mysite/hcat/urls.py src/hca/hcat/mysite/hcat/urls.py index eb2df38..db851c1 100644 --- src/hca/hcat/mysite/hcat/urls.py +++ src/hca/hcat/mysite/hcat/urls.py @@ -1,12 +1,13 @@ from django.urls import path from . import views from . import api app_name = 'hcat' urlpatterns = [ path('', views.index, name='index'), path('project/<int:pk>/', views.ProjectDetailView.as_view(), name='project_detail'), path('project', views.ProjectListView.as_view(), name='project_list'), + path('project/', views.ProjectListView.as_view(), name='project_list'), ]