author | anoop |
Thu, 18 Feb 2010 19:39:54 +0530 | |
changeset 44 | 2b09336352b5 |
parent 22 | 36d3173ab7f9 |
child 57 | 67e0d0a915e3 |
permissions | -rw-r--r-- |
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 | 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 | 9 |
admin.site.register(Claim) |