taskapp/admin.py
author nishanth
Sun, 28 Feb 2010 03:31:40 +0530
changeset 137 e56b95298254
parent 58 e0ec1901dfce
child 153 925af1b4ee65
permissions -rw-r--r--
now requests in sidebar shows the no.of unread notifications.

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)