vote up 0 vote down star
1

I want to make a static page which will be shown to the user only if he/she clicks on a link provided in one of my models. I can do this by making a Python page alone and calling it, but I want it be called from Django. The user interface should constructed using the Django API only.

Any suggestions?

flag

19% accept rate
Can you elaborate a little bit? E.g. is the content of the static page required to be in the database or is it allowed to be in a file? Is it only logged-in users that are allowed to access the static page? – Peter Mortensen Jul 14 at 8:53

3 Answers

vote up 4 vote down

Bypassing views to render a static template, add this line in "urls.py". For example "About Us" page could be

(r'^about', 'django.views.generic.simple.direct_to_template', {'template': 'path/to/about_us.html'}),

link|flag
thanks it works this is only i needed – ha22109 Jul 15 at 5:23
vote up 0 vote down

If you want to make a static page the flatpages is a good choice. It allows you to easily create static content. Creating static content is not harder than creating a view really.

link|flag
vote up 4 vote down

Do you mean something like Django's flatpages app? It does exactly what you describe.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.