taskapp/admin.py
author Nishanth Amuluru <nishanth@fossee.in>
Thu, 06 Jan 2011 11:54:57 +0530
changeset 225 042dabb73a22
parent 205 0c317f68df49
permissions -rw-r--r--
the report page now displays url of the uploaded attachment

from django.contrib import admin

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

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