Tagged Questions

6
votes
1answer
895 views

Django.contrib.flatpages without models

I have some flatpages with empty content field and their content inside the template (given with template_name field). Why I am using django.contrib.flatpages It allows me to serve (mostly) static ...
3
votes
2answers
757 views

Extending Django Flatpages to accept template tags

I use django flatpages for a lot of content on our site, I'd like to extend it to accept django template tags in the content as well. I found this snippet but after much larking about I couldn't get ...
2
votes
1answer
115 views

Changing Django Flatpage Label to another name in Django admin dashboard

Am pretty new to django and am trying to make use of the flatpage module in one of the site am going to create. I am able to setup everything for an admin user to create a page using the flatpage ...
1
vote
2answers
188 views

Access to field in extended flatpage in django

How to access field in extended flatpage in django? I wrote this: class ExtendedFlatPage(FlatPage): teaser = CharField(max_length=150) class ExtendedFlatPageForm(FlatpageForm): teaser = ...
1
vote
1answer
746 views

how to implement ckeditor in django.contrib.flatpages

can any one describe how to implement the ckeditor in django.contrib.flatpages... Thanks in advance
1
vote
2answers
378 views

django flatpage redirects

I want to make sure all of my flatpages have the "www" subdomain and redirect to it if they don't. I've looked at some middlewares that redirect to www, but 1. they usually redirect all urls to www ...