Added context into rendering in view

This commit is contained in:
Praneeth Bhandaru 2020-10-21 17:36:52 -04:00
parent f37229e0e7
commit a631263a4c
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
<p class="lead">We are the class to beat!</p> <p class="lead">We are the class to beat!</p>
</div> </div>
</div> </div>
<div class="container news"> <div class="container news mb-5">
<h1 class="text-center font-weight-bold">2023 News</h1> <h1 class="text-center font-weight-bold">2023 News</h1>
<br><br> <br><br>
<div class="row"> <div class="row">

View File

@ -18,7 +18,7 @@ def index(request):
'bar': bar 'bar': bar
} }
return render(request, 'pages/index.html') return render(request, 'pages/index.html', context)
def council(request): def council(request):