diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..26d3352
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/.idea/VetDataHub_Website.iml b/.idea/VetDataHub_Website.iml
new file mode 100644
index 0000000..07abf20
--- /dev/null
+++ b/.idea/VetDataHub_Website.iml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml
new file mode 100644
index 0000000..105ce2d
--- /dev/null
+++ b/.idea/inspectionProfiles/profiles_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..3671ece
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..0cf250f
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/analytics/urls.py b/analytics/urls.py
new file mode 100644
index 0000000..795f9ed
--- /dev/null
+++ b/analytics/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+
+from analytics import views
+
+urlpatterns = [
+ path('',views.analytics,name='analytics')
+]
diff --git a/analytics/views.py b/analytics/views.py
index 91ea44a..06147b0 100644
--- a/analytics/views.py
+++ b/analytics/views.py
@@ -1,3 +1,5 @@
from django.shortcuts import render
# Create your views here.
+def analytics(request):
+ return render(request,'analytics.html')
\ No newline at end of file
diff --git a/community/urls.py b/community/urls.py
index d745fb6..953767d 100644
--- a/community/urls.py
+++ b/community/urls.py
@@ -1 +1,7 @@
from django.urls import path
+
+from analytics import views
+
+urlpatterns = [
+ path('',views.community,name='community')
+]
diff --git a/community/views.py b/community/views.py
index 2536b37..a57aebd 100644
--- a/community/views.py
+++ b/community/views.py
@@ -1 +1,3 @@
from django.shortcuts import render
+def community(request):
+ return render(request,'community.html')
\ No newline at end of file
diff --git a/datasets/urls.py b/datasets/urls.py
index e39cb2c..365cb0f 100644
--- a/datasets/urls.py
+++ b/datasets/urls.py
@@ -1,3 +1,7 @@
from django.urls import path
-urlpatterns = []
+from analytics import views
+
+urlpatterns = [
+ path('',views.datasets,name='datasets')
+]
diff --git a/datasets/views.py b/datasets/views.py
index 91ea44a..c87e64e 100644
--- a/datasets/views.py
+++ b/datasets/views.py
@@ -1,3 +1,5 @@
from django.shortcuts import render
-# Create your views here.
+
+def datasets(request):
+ return render(request,'datasets.html')
\ No newline at end of file
diff --git a/moderation/urls.py b/moderation/urls.py
new file mode 100644
index 0000000..11ab461
--- /dev/null
+++ b/moderation/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+
+from analytics import views
+
+urlpatterns = [
+ path('',views.moderations,name='moderations')
+]
diff --git a/moderation/views.py b/moderation/views.py
index 91ea44a..956b9e0 100644
--- a/moderation/views.py
+++ b/moderation/views.py
@@ -1,3 +1,5 @@
from django.shortcuts import render
# Create your views here.
+def moderation(request):
+ return render(request,'moderation.html')
\ No newline at end of file
diff --git a/vetdatahub/urls.py b/vetdatahub/urls.py
index 4963795..105b19b 100644
--- a/vetdatahub/urls.py
+++ b/vetdatahub/urls.py
@@ -16,8 +16,14 @@
"""
from django.contrib import admin
-from django.urls import path
+from django.urls import path, include
urlpatterns = [
+ path('',include('registration.urls')),
+ path('home/',include('home.urls')),
+ path('moderation/',include('moderation.urls')),
+ path('datasets/',include('datasets.urls')),
+ path('community/',include('community.urls')),
+ path('analytics/',include('analytics.urls')),
path("admin/", admin.site.urls),
]