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 trial

Python Django Forms Forms Showing a Form in a View

My form is not displaying nicely. How do I get my form to look like the one in the video?

There are no line breaks after the text for my form to separate the text areas. I don't understand why mine doesn't look the same as the one in the video which is nicely aligned.

Can you post a snapshot of your workspace? It is the camera icon in the upper right corner.

I'm working in a separate text editor. But this is my suggestion_form.html code:

{% extends "layout.html" %}

{% block title %}Suggest an idea!{% endblock %}

{% block content %} <div class="container"> <div class="row"> <form action="" method="POST"> {{ form.as_p }} {% csrf_token %} <input type="submit" class="button"> </form> </div> </div>

{% endblock %}

The form is not displaying with linebreaks and the comment text box is indented to the right