Create a tag cloud... db.define_table('article', Field('content')) db.define_table('tag', Field('name')) db.define_table('article_tag', Field('article',db.article),Field('tag',db.tag))
On Dec 12, 1:45 pm, Carlos <carlosgali...@gmail.com> wrote: > Hi, > > This is not a question specific to web2py, but it's more a generic > inquiry. > > How does 'tags' usually work in a regular website (e.g. for articles/ > blogs)?. > > I mean: > > Should tags be managed (create/update/delete tags) only by the admin > or also by end users?. > > Should tags be used (tagging specific articles) only by the admin or > also by end users?. > > And then how to create and manage a "tag cloud"?. > > Thanks for your input, > > Carlos