Get thee to a Stack Overflow!
def add_page(cat, title, url, views=0): p = Page.objects.get_or_create(category=cat, title=title)[0] p.url=url p.views=views p.save() return p
No comments:
Post a Comment