Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
678 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?
8
votes
7answers
4k 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
6
votes
1answer
894 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 ...
4
votes
3answers
441 views

Reversible, named URLs for Django flatpages (or multilingual-ng)?

Is there a way to have reversible, named URLs for Django flatpages (or multilingual-ng, which is flatpages + translations)? If not, is there a similar app available which can have named URLs for ...
4
votes
4answers
2k 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 anything out there? ...
3
votes
1answer
249 views

include() and flatpages confusion

I'm following Apress: Practical Django Projects and I've come across something that confuses me a little. When I set up my url.py to point to flatpages it works fine if I do this: ... (r'', ...
3
votes
1answer
316 views

How to use multiple flatpages models in a django app?

I have multiple models that can be converted to flatpages but have to have some extra information (For example I have an about us page but I also have a blog). However I understand that there must be ...
3
votes
2answers
756 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 ...
3
votes
2answers
807 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/flatpages/contact.html ...
3
votes
6answers
5k 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 in the Apress book: ...
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 ...
2
votes
2answers
451 views

Using flatpages to create a simple facebook app, but CSRF problem caused by signed_request

I am trying to create a simple, html-only facebook app for a client's fb page. I would like to use django's flatpages so that the client and his staff can change the content of the app through the ...
2
votes
3answers
509 views

Django flatpages default site

mostly I use flatpages for one site (from sites framework). How can I mark existing site default for all created flatpages? It is waste of time every time to choose same site for every page created. ...
2
votes
4answers
796 views

Django flatpages raising 404 when DEBUG is False (404 and 500 templates exist)

I'm using Django 1.1.1 stable. When DEBUG is set to True Django flatpages works correctly; when DEBUG is False every flatpage I try to access raises a custom 404 error (my error template is obviously ...
2
votes
3answers
2k views

Django FlatPages vs Django-CMS

Without going into too much detail, I'm building a Django site and I wanted to implement a CMS solution, while having a lot of flexibility with page layouts, navigation, and organization. It'd be ...
2
votes
1answer
481 views

Change field in Django Flatpages Admin

Using Flatpages with the default admin, I need to change the template field from a text input with to select or radio with predefined choices. It's easy to do this with one of my own apps - just use ...
2
votes
2answers
739 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 have DEBUG = False in ...
2
votes
2answers
199 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 before flatpages does. ...
1
vote
1answer
61 views

views for Django flatpages?

I use the following to determine the template on a pattern that matches the index page, in which I determine which template to load based on if it's an AJAX request: def home(request): if ...
1
vote
1answer
115 views

Login required for django Flatpages

Is there an easy way to put login required decorator to all my Flatpages? Do I need to modify my url conf? (r'',include('django.contrib.flatpages.urls')), Thanks, Fred
1
vote
1answer
116 views

How to use Django's flatpages with multiple sites and the same url?

I have 5 sites, each on their own domain, running under one django project. Currently all the sites have the same contact page, as provided by flatpages under the url /contact/. However it would be ...
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
2answers
664 views

django: extend flatpages for a specific application

I have a portfolio application that lists projects and their detail pages. Every project generally has the same information (gallery, about etc. ), but sometimes the user might want to add extra ...
1
vote
1answer
745 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 ...
1
vote
4answers
215 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 a new flatpage. ...
1
vote
1answer
92 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 is setting a publish ...
0
votes
2answers
53 views

Add form to django-flatpages

I have a a contact & info page that uses flatpages. However I want to add a form that allows visitors to sign their emails up to a list. However, if I send the URL to render the form view, it ...
0
votes
0answers
32 views

Django Flatpages CSRF verification fails

Django 1.3 I recently updated to 1.3, and now it seems since I am trying to switch to another language, it raises a 403 page. First having thought maybe I didn't add the {% get_current_language as ...
0
votes
1answer
56 views

Why does Django's flatpages allow logging a 404 error?

A funny thing I've noticed about Django's flatpages app: it allows core/handlers/base.py to log a warning Not Found: $page. As a result of that, my Sentry logs are full with 404s for legitimate and ...
0
votes
1answer
209 views

Extending Django FlatPages to use MPTT

Preface: I was writing my own Page app that used MPTT and a custom page model. This was working for me, but FlatPages is more refined than my custom Page Model and so I'm leaning toward just extending ...
0
votes
2answers
74 views

Do i need to add URLs for flat pages in url.py in django

I have enabled flat pages in django and created page with url /pages/about so i want to know that do i need to create some url in url.py or not Because when i try http://ip:8000/pages/about it say ...
0
votes
0answers
107 views

Best way to manage changes to fixtures in django flatpages?

I use Django's flatpages for some static pages and django-south to manage database migrations. I also use a fixture for the flatpages so that the pages can be restored. Now I want to change the ...
0
votes
1answer
123 views

use jquery in Django Flatpages

can use jquery and jquery Ui in Django Flatpages ? should I host the files locally, or can I specify some external location ?? Thanks :)
0
votes
1answer
185 views

Use Django flatpages without sites

Is there any that I can have a catch all site with flatpage framework in Django? I have one site but you can get to it through a few DNS names that change constantly. I need to map these all to a ...
0
votes
2answers
144 views

Using Django Flatpages in production: how to archive changes for recovery purposes

I am using Django Flatpages in a production site. I'd like to figure out the best way to make sure if an admin makes a mistake editing a file, old version of the page can be retrieved. We have backups ...
0
votes
1answer
163 views

How do you set the sitemap priority for flatpages in django?

I have a site with about 60,000 pages that are getting placed in the sitemap, and which have a priority of 0.3. These are all really long pages that are rich in keywords. I also have a few pages ...
0
votes
1answer
164 views

Best way to fix django admin preview of flatpage attached to multiple sites

I have flatpage attached to multiple sites. Its admin preview chooses arbitrary site, which is quite obvious after debugging up to lines 35-36 of django.contrib.contenttypes.views.shortcut(). What ...
0
votes
2answers
211 views

Can't get Google map to show up in Flatpage using Django Flatpages

I have a client with a "Directions" page in their website and they wanted to add a Google map to the page, so they went to maps and put in their location and then used the "embed" link to get the html ...
0
votes
1answer
648 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 this error ...
0
votes
2answers
258 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 when I am on the ...
0
votes
3answers
235 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 there a way to do ...