diff --git a/site_tps/urls.py b/site_tps/urls.py
index d8d3e60..e603025 100644
--- a/site_tps/urls.py
+++ b/site_tps/urls.py
@@ -23,4 +23,5 @@ urlpatterns = [
path('', views.home),
path('content/', include('content.urls')),
path('settings/', include('settings.urls')),
+ path('vote/', include('vote.urls')),
]
diff --git a/templates/nav_bar.html b/templates/nav_bar.html
index 86105bc..a54d352 100644
--- a/templates/nav_bar.html
+++ b/templates/nav_bar.html
@@ -25,7 +25,7 @@
{{c.name}}
{% endfor %}
-
Vote
+ Vote
Administration
Dropdown
diff --git a/vote/templates/vote/home.html b/vote/templates/vote/home.html
index 62637f9..17e941c 100644
--- a/vote/templates/vote/home.html
+++ b/vote/templates/vote/home.html
@@ -1,2 +1,6 @@
-Lol
-
+{% extends 'base.html' %}
+{% block content %}
+
+
Votes disponibles
+
+{% endblock %}
diff --git a/vote/urls.py b/vote/urls.py
index 48336d5..494b376 100644
--- a/vote/urls.py
+++ b/vote/urls.py
@@ -1,6 +1,7 @@
from django.urls import path
from . import views
+app_name = 'vote'
urlpatterns = [
- path('home', views.home)
+ path('home', views.home, name='home')
]