I'm running through a couple of tutorials and I've hit the same
problem in each one. I feel like I've got the simple models for the /
polls/ tutorial and a /blog/ tutorial (from Webmonkey), but when I
test it out locally, the resulting page shows raw HTML -- the content
is there, but it's showing the HTML tags like it's a text file. Here
are a couple of examples:

http://127.0.0.1:8000/polls/

looks like:

<ul>
<li> What's up?
</li>
</ul>

and

http://127.0.0.1:8000/blog/

looks like:

<html>
  <head>
    <link href="base.css" rel="stylesheet" />
    <title>This is my blog on Django</title>
  </head>
  <body>
    <div id="header">
      <h1>This is my Django Blog!</h1>
      <ul id="main-nav">
        <li><a href="/">Home</a></li>
        <li><a href="/blog/archives">Archives</a></li>
        <li><a href="/about-me">About Me</a></li>
      </ul>
    </div>
    <div id="content"></div>
    <div id="sidebar">
      <h3> Blogroll</h3>
      <ul id="blogroll">
        <li><a href="http://somesite.com";>Someone's Blog</a></li>
        <li><a href="http://somesite2.com";>Someone Else's Blog</a></
li>
        <li><a href="http://somesite3.com";>Yet Someone's Else's Blog</
a></li>
      </ul>
    </div>
  </body>
</html>

I feel like I'm missing something simple. I read up on the autoescape
tags, but I'm not sure that's the solution. Any ideas?

Thanks,

Jeff

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to