Tagged Questions

0
votes
2answers
46 views

Specific templates for flatpages in Django

Is it possible to link specific templates for different flatpages in Django? For example: /about/ -> templates/flatpages/about.html /contact/ -> templates/flatpage …
1
vote
2answers
74 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 redire …
0
votes
4answers
366 views

How can I get the reverse url for a Django Flatpages template

How can I get the reverse url for a Django Flatpages template
0
votes
1answer
67 views

How to set a Flatpage as the Homepage in Django

How can I set a Flatpage as the Homepage? My urls.py is (r'', include('django.contrib.flatpages.urls')), In the admin section I set the URL of the Flatpage to "/". I get t …
0
votes
3answers
127 views

How can you have Wordpress-like custom fields using Django flatpages?

One of the features that makes a CMS like WordPress powerful is the ability to add additional fields that may be used in the template. WordPress has what it calls custom fields. Is …
2
votes
6answers
974 views

Problem embedding TinyMCE in Django, any help?

I’m working on a web application with Django, and I’m using the Flatpages app. Now, I’m trying to embed the TinyMCE WYSIWYG editor in Flatpages. I’m following the steps mentioned …
1
vote
1answer
180 views

Django flatpages backup?

I'm using flatpages in a site that I'm developing in a locally server. I need to backup the flatpage's data for use it in the final server. Does anyone know how to do it?
1
vote
2answers
257 views

Django 1.1 beta 1 - Flatpages Error, Debug = False, with 404.html

The Django flatpages app has a well-known and oft-discussed-on-the-web bug related to a missing 404.html "Page Not Found" template in your project's templates directory. If you hav …
2
votes
3answers
550 views

Is there anything better than flatpages for Django?

I was wondering if there's anything better than the flatpages app for Django, because flatpages doesn't even support things like status (draft, published) or publish date. Is there …
0
votes
2answers
132 views

How to get page parent when using Django flatpages?

Since Django urls are arbitrary, including those set when you create flatpages. How can you figure out what a page's parent is? That is if I create a page /about/contact/, then whe …
1
vote
3answers
90 views

How can I specify a prepopulated value for many to many relationships in django 1.0 (flatpages)?

Django flatpages uses a many-to-many relationship with the django Site model class FlatPage(Model) ... sites = ManyToManyField(Site) You must select a site when creating …
1
vote
1answer
59 views

How can you get future-dated posts in Django?

I just want to do a basic site in Django and the flatpages app is super simple, but it doesn't support a couple of things that I need, namely custom fields and future-dating. That …
2
votes
2answers
96 views

Can you have more than one app handle a 404 in Django?

Apparently, the way Django flatpages works is that it handles the 404 thrown by other apps. I was wondering if I could do another flatpages-type app that gets a crack at the 404 be …
4
votes
1answer
397 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 se …