Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#1365 closed defect (fixed)

The current template.txt docs don't say *how* to get to the built in template reference pages

Reported by: joseph.heck@… Owned by: Jacob
Component: Documentation Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The current template.txt docs don't say *how* to get to the built in template reference pages. I caught the answer in the comments, and made this patch to the current file to resolve it:

Index: templates.txt
===================================================================
--- templates.txt       (revision 2312)
+++ templates.txt       (working copy)
@@ -243,7 +243,9 @@
 Because Django can be used to develop any sort of site, the tags, filters and
 variables available are different depending on the application. To make it
 easy to figure out what's available in a given site, the admin interface has a
-complete reference of all the template goodies available to that site.
+complete reference of all the template goodies available to that site. To 
+get to that reference, append "doc" onto the admin URL. An example for the
+tutorial would be http://127.0.0.1/admin/doc.
 
 The reference is integrated into the administration interface for your site(s)
 and is divided into 4 sections: tags, filters, models, and views.
[Henri:~/Documents/code/python/django/docs] heckj$ 

Attachments (1)

template.diff (831 bytes ) - added by joseph.heck@… 18 years ago.
diff/patch of the changes to mention how to get to the reference docs in admin

Download all attachments as: .zip

Change History (2)

by joseph.heck@…, 18 years ago

Attachment: template.diff added

diff/patch of the changes to mention how to get to the reference docs in admin

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [2316]) Fixed #1365 -- Improved docs/templates.txt to note location of admin documentation site. Thanks, Joseph Heck

Note: See TracTickets for help on using tickets.
Back to Top