-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Alessandro Ronchi declared:
>> Alessandro Ronchi declared:
>>> I need to give the possibility to the administrator to manage portions
>>> of templates in pages, and let him to change that portions for every
>>> page.
>>> Joomla does this thing with modules: I need something similar. Is it 
>>> possible?

>> Store your templates in the DB!

> Do you have any example / documentation?

I don't have a very concrete example, but the high level thinking is
pretty easy to write out.  Typically, you would store your templates in
some kind of templates directory on the file system.  This doesn't work
well for your problem, as you want Admin type people to be able to edit
the templates, and you might even want some kind of revision control on
them.

Instead, you can make a table in your DB in which to stuff the
templates.  Maybe something like this:

class WebTemplate(models.Model):
        template = models.TextField()
        version = models.PositiveIntegerField(unique=True)
        # Use this to store which page the template is for, like 'home'
        page = models.CharField(max_length=<some_length>)

When you create your template object, make it from the text in the
template field, and look for the entry with the highest version.  When
somebody edits the template, you just create a new instance and
increment the version number.  Make sense?  If you don't need revision
control, then you can simplify this, but I think it's pretty simple as is!

- --
Randy Barlow
Software Developer
The American Research Institute
http://americanri.com
919.228.4971
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkqvtRAACgkQw3vjPfF7QfX09ACggLQsUDZFq9WGJDTEnJmJjuu3
PMAAoIcABdyc/wH95bzASXfGYOB+vlNU
=dQnM
-----END PGP SIGNATURE-----

--~--~---------~--~----~------------~-------~--~----~
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