Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRutendo Chaurura
6,809 Pointshelp me please
Great! Now we need to use the form in our template. Add the CSRF token template tag and then print out our form as either paragraphs (as_p), list items (as_ul), or a table (as_table).
from django.shortcuts import render
from . import forms
def product_form(request):
form = forms.DigitalProductForm()
return render(request, 'products/product_form.html', {'form': form})
<form action='' method='POST'>
<input type="submit" value="Save">
</form>
1 Answer
kudakwashe jamu
8,317 Points<h1>Log into your account</h1> <form method="POST"> {% csrf_token %} {{ form.as_p }} <input type="submit" value="Log in"> </form>