On Wednesday, July 2, 2014 12:25:24 PM UTC+1, Lachlan Musicman wrote:
>
>
>
> Why is this template not outputting the Title area?
I am using django-1.4.13


<!DOCTYPE html>
<html lang="en">

<head>
    <title>My test page</title>
</head>
<body>
<div class="side_bar">
    <h1>News Updates</h1>
    {% for entry in entries %}
        <h2>{{entry.headline}}</h2>
        <h3>Posted on {{ entry.pub_date }} by {{ entry.reporter }}</h3>
        <p>{{entry.content}}</p>
    {% endfor %}
</div>


</body>
</html> 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3bf72bbb-369a-4e5d-9626-be7926a21071%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to