4 changed files with 10 additions and 4 deletions
@ -1,2 +1,6 @@ |
|||||
Lol |
{% extends 'base.html' %} |
||||
|
{% block content %} |
||||
|
<div class="container"> |
||||
|
<h2>Votes disponibles</h2> |
||||
|
</div> |
||||
|
{% endblock %} |
||||
|
|||||
@ -1,6 +1,7 @@ |
|||||
from django.urls import path |
from django.urls import path |
||||
from . import views |
from . import views |
||||
|
|
||||
|
app_name = 'vote' |
||||
urlpatterns = [ |
urlpatterns = [ |
||||
path('home', views.home) |
path('home', views.home, name='home') |
||||
] |
] |
||||
|
|||||
Loading…
Reference in new issue