From 1473227a75101f5b76d6b522da5737df2f5eb058 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Fri, 28 Jun 2019 21:44:43 +0530 Subject: added basic interface for development --- R_on_Cloud/urls.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 R_on_Cloud/urls.py (limited to 'R_on_Cloud/urls.py') diff --git a/R_on_Cloud/urls.py b/R_on_Cloud/urls.py new file mode 100644 index 0000000..143ec6d --- /dev/null +++ b/R_on_Cloud/urls.py @@ -0,0 +1,23 @@ +"""R_on_Cloud URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/2.2/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path, include, re_path +from django.views.generic import TemplateView + +urlpatterns = [ + path('', include('website.urls')), + path('admin/', admin.site.urls), +] -- cgit