Define the model that includes:
* (some) Foreign key to the page the block belongs to (so, most
probably you'll have to define the model for the site page)
* the text field for the block contents
Register this model in the admin, which will generate the form with 2
fields - drop-down select (for the page) and the textarea.
If you have constant number of pages, pre-create exactly one block for
each of them in you application deployment process (through fixtures,
for example)
Then you can hide the select element from the admin form (by
specifying explicit fields attribute on your ModelAdmin class - read
the tutorial if you do not understand what I mean)
If you need the way to distinguish between these blocks, create the
__unicode__ method on the model which will return something like
self.page.title

All of this has nothing to do with urlconf

And finally in the views of your page get the appropriate content
block (thomething like page.content_set.all()[0]) and pass it to the
template as the context variable

On Jul 9, 10:47 am, "paul.dorman" <paul.dor...@gmail.com> wrote:
> Hi all,
>
> I'd like to include blocks of content in my templates which is
> editable in the Admin app. I'd design the overall template, but
> include bits that the computer illiterate folks here could change,
> something like this:
>
> [my template]
> <normal HTML headers and the like>
> [a form which is included in the template]
> [a block of content that can be edited in the Admin application by
> computer illiterate monkeys]
> <normal HTML footers and the like>
>
> I initially thought that flatpages would be the answer (with TinyMCE),
> but alas, there appears to be no built-in way to include a flatpage
> inside a template.
>
> I don't want the content blocks to have a URL (so no URLConf entry). I
> don't mind if I use a model, but I don't know how to get the Admin app
> to pick up the model without a URLConf entry.
>
> Also, how do I reference a value from the model inside any template?
> I've tried creating a variable (testblock = ContentBlock.objects.get
> (name='testblock')) in my view, and then including {{testblock}} in my
> template, but that does nothing. I know I'm doing it wrong, but I
> can't find documentation to help.
>
> Please help. This is my first real Django application (so yes, I'm a
> newb), but I'd like to stick with common practice as far as possible.
>
> Thanks for your help,
> Paul
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to