Add host detail view
[pharos-tools.git] / dashboard / src / dashboard / urls.py
1 ##############################################################################
2 # Copyright (c) 2016 Max Breitenfeldt and others.
3 # Copyright (c) 2018 Sawyer Bergeron, Parker Berberian, and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11
12 """pharos_dashboard URL Configuration
13
14 The `urlpatterns` list routes URLs to views. For more information please see:
15     https://docs.djangoproject.com/en/1.10/topics/http/urls/
16 Examples:
17 Function views
18     1. Add an import:  from my_app import views
19     2. Add a URL to urlpatterns:  url(r'^$', views.home, name='home')
20 Class-based views
21     1. Add an import:  from other_app.views import Home
22     2. Add a URL to urlpatterns:  url(r'^$', Home.as_view(), name='home')
23 Including another URLconf
24     1. Import the include() function: from django.conf.urls import url, include
25     2. Add a URL to urlpatterns:  url(r'^blog/', include('blog.urls'))
26 """
27 from django.conf.urls import url
28 from dashboard.views import (
29     landing_view,
30     lab_list_view,
31     lab_detail_view,
32     host_profile_detail_view
33 )
34
35 app_name = "dashboard"
36 urlpatterns = [
37     url(r'^$', landing_view, name='index'),
38     url(r'^lab/$', lab_list_view, name='all_labs'),
39     url(r'^lab/(?P<lab_name>.+)/$', lab_detail_view, name='lab_detail'),
40     url(r'^hosts/$', host_profile_detail_view, name="hostprofile_detail")
41 ]