django: Moving on to tutorial 5.

I'm a moron.
This commit is contained in:
Kyle Isom 2018-05-06 22:19:21 -07:00
parent 99b8f06813
commit d7d7b195d8
2 changed files with 2 additions and 3 deletions

View File

@ -9,5 +9,4 @@
<label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br />
{% endfor %}
<input type="submit" value="Vote" />
</form>

View File

@ -20,7 +20,7 @@ class DetailView(generic.DetailView):
class ResultsView(generic.DetailView):
model = Choice
model = Question
template_name = 'polls/results.html'