taskapp/admin.py
author anoop
Wed, 24 Feb 2010 15:41:37 +0530
changeset 71 801cf8fca53a
parent 58 e0ec1901dfce
child 153 925af1b4ee65
permissions -rw-r--r--
made change to the request model and corresponding create_request utility.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
7818992cbf83 Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     1
from django.contrib import admin
7818992cbf83 Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     2
58
e0ec1901dfce changed request model, added create_request utility.
anoop
parents: 57
diff changeset
     3
from pytask.taskapp.models import Profile, Task, Credit, Comment, Claim, Notification, Request
10
bf0cbea1bd12 removed views.py and made it a package. added auth_profile to settings.py
nishanth
parents: 1
diff changeset
     4
bf0cbea1bd12 removed views.py and made it a package. added auth_profile to settings.py
nishanth
parents: 1
diff changeset
     5
admin.site.register(Profile)
1
7818992cbf83 Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     6
admin.site.register(Task)
7818992cbf83 Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     7
admin.site.register(Comment)
7818992cbf83 Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     8
admin.site.register(Credit)
22
36d3173ab7f9 addded link to view claims in 'view task' page .
nishanth
parents: 11
diff changeset
     9
admin.site.register(Claim)
57
67e0d0a915e3 added utilities for creating notification.
anoop
parents: 22
diff changeset
    10
admin.site.register(Notification)
58
e0ec1901dfce changed request model, added create_request utility.
anoop
parents: 57
diff changeset
    11
admin.site.register(Request)