taskapp/admin.py
author nishanth
Sun, 28 Feb 2010 03:01:53 +0530
changeset 136 8632a44b743d
parent 58 e0ec1901dfce
child 153 925af1b4ee65
permissions -rw-r--r--
deducing previous credits for a task using the request model. with a few changes, we can ditchax the credits model.

from django.contrib import admin

from pytask.taskapp.models import Profile, Task, Credit, Comment, Claim, Notification, Request

admin.site.register(Profile)
admin.site.register(Task)
admin.site.register(Comment)
admin.site.register(Credit)
admin.site.register(Claim)
admin.site.register(Notification)
admin.site.register(Request)