- Author:
- miernik
- Posted:
- November 12, 2009
- Language:
- SQL
- Version:
- Not specified
- Score:
- 0 (after 0 ratings)
Substitute hyphens with spaces to enale URLs to reference to multi-word tags
1 2 3 4 5 6 | def list_tag(request, tag):
from re import sub
tag = sub('-',' ',tag)
query_tag = Tag.objects.get(name=tag)
events = TaggedItem.objects.get_by_model(Event, query_tag)
events = events.order_by('-start')
|
More like this
- create_template_postgis-ubuntu_lucid by clawlor 14 years, 2 months ago
- PostgreSQL fulltext with language translations by diverman 14 years, 3 months ago
- Drop all tables in MySQL database by mpasternacki 14 years, 9 months ago
- grep and delete sqlite tables by kifkif 14 years, 11 months ago
- oneliner to delete SQLite tables by kifkif 15 years ago
Comments
Please login first before commenting.