taskapp/admin.py
author nishanth
Mon, 22 Feb 2010 18:13:20 +0530
changeset 50 d40e86f958f7
parent 22 36d3173ab7f9
child 57 67e0d0a915e3
permissions -rw-r--r--
made changes in addtaskform to suit tagging.
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
22
36d3173ab7f9 addded link to view claims in 'view task' page .
nishanth
parents: 11
diff changeset
     3
from pytask.taskapp.models import Profile, Task, Credit, Comment, Claim
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)