Как передать значения списка из представлений в шаблон в django
Этот параметр не отображается в файле шаблона.
Что я уже пробовал:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!-- form to take user input --> <div id="home" class="col-md-4" > <form class="input-form text-center"> <input type="text" placeholder="Enter your name" /> <select >{% for festive in festive_list %} <option value=''>{{ festive}}</option> </select> <button type="button" id="btn" >Create</button> {% endfor %} </form> </div> </body> </html>
views.py
from django.http import HttpResponse from django.shortcuts import render from django.template import loader def index(request): #festival_list = ['Birthday','Holi','Diwali'] festival_list = ["Birthday", 'Holi', 'Diwali'] template = loader.get_template('polls/index.html') return render(request, 'polls/index.html', {'festival_list': festival_list})