On Thu, 2006-10-19 at 05:21 -0700, DuncanM wrote: > Hi there, sorry if this is a repeated question I tried searching and > didn't find any direct answers to my question so any help is > appreciated. Using Django is it possible to have a menu option > populated from a database for example: > > I have a menu with the option "Teams" when clicked on it would show a > sub menu to the side, which would contain things like "Under 10's", > "Under 11's", "Adults" etc. These team names would be stored in a > table say called Teams or something similar, is it possible, and easy > to accomplish so that any changes to the database also reflect in the > menu.
You need to write a template tag that returns the necessary HTML fragment to display the list. So your template tag would extract the list of all the teams from the database and then return a string (or a dictionary if you are using the inclusion_tag shortcut). See http://www.djangoproject.com/documentation/templates_python/#shortcut-for-simple-tags for a quick introduction to writing template tags (if you want a more detailed overview, have a look at the section just before that anchor point). Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---