Changeset 9075 for djangoproject.com/django_website/templates
- Timestamp:
- 09/19/08 16:01:11 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
djangoproject.com/django_website/templates/docs/detail.html
r7920 r9075 19 19 </h2> 20 20 21 {{ doc.body }}21 {{ doc.body|safe }} 22 22 23 23 <div id="content-secondary"> … … 39 39 {% block content-related %} 40 40 <h2>Contents</h2> 41 {{ doc.toc }}41 {{ doc.toc|safe }} 42 42 <h3>Last update:</h3> 43 43 <div>{{ update_date|date:"F j, Y, P" }} (<a href="http://www.timeanddate.com/worldclock/city.html?n=64">CDT</a>)</div> djangoproject.com/django_website/templates/docs/model_detail.html
r6526 r9075 19 19 </h2> 20 20 21 {{ doc.fragment }}21 {{ doc.fragment|safe }} 22 22 23 23 <h2 id="model-source-code">Model source code</h2>
