pytask/taskapp/admin.py
author nishanth
Sat, 30 Jan 2010 13:03:09 +0530
changeset 11 d28fcc644fbb
parent 4 a9c458c7782a
child 15 c6038cbf8a39
permissions -rw-r--r--
implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.

from django.contrib import admin

from pytask.taskapp.models import Profile, Task, Credit, Comment

admin.site.register(Profile)
admin.site.register(Task)
admin.site.register(Comment)
admin.site.register(Credit)