How can I get the reverse url for a Django Flatpages template
|
|
|
Include flatpages in your root urlconf:
Then, in your view you can call reverse like so:
In templates, use the {% url %} tag (which calls reverse internally):
|
|||||||
|
|
I prefer the following solution (require Django >= 1.0).
|
|
The only real difference between your solution and mine (which doesn't require the FlatPageFallbackMiddleware either), is the use of named urlpatterns (not available pre-1.0, as you pointed out). That said, I suppose it might be better (for maintainability) to have all your URLs listed in a urlconf, rather than in templates, at the expense of a little verbosity. +1 – elo80ka Apr 5 '11 at 7:54 |
|
Write your base urls conf to point to your flatpages. Assume it is under pages:
Then write your flatpages as normal:
Then your template just refers to them in the usual fashion:
|
|||
|
|
|
I thought the advantage of Flatpages was you didn't have to create any view stubs or url confs? It's a bit pointless otherwise... if you're creating views and urls you may as well save the flatpage content as template html instead. try this instead: http://wiki.github.com/0sn/nameremoved/flatpages |
|||
|
|
|
When you create any flatpage, you need to specify an URL which is saved as part of the model. Hence you can retrieve the URL from any flatpage object. In a template:
Remapping flatpage URLs in |
||||
|
|
|
None of the solutions mentioned sufficiently followed the DRY principle in my opinion, so I just did this:
Then in any template that needs to make a link, I did this:
I might add some caching in there to keep the performance up, but this works for me. |
||||
|
|
|
I agree with Anentropic that there is no point in using Django Flatpages if you need to write urlconfs to employ them. It's much more straightforward to use generic views such as
Flatpages take advantage of If you still choose to use Flatpages app, you'd better use
Personally, I rarely reference flatpages outside of website's main menu, which is included via
I don't feel I violate any DRY KISS or something:) |
|||
|