pytask/taskapp/admin.py
author anoop
Mon, 01 Feb 2010 14:08:18 +0530
changeset 16 d57e63325759
parent 15 c6038cbf8a39
permissions -rw-r--r--
added view profile and edit profile functionalities.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     1
from django.contrib import admin
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     2
15
c6038cbf8a39 addded link to view claims in 'view task' page .
nishanth
parents: 4
diff changeset
     3
from pytask.taskapp.models import Profile, Task, Credit, Comment, Claim
2
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     4
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     5
admin.site.register(Profile)
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     6
admin.site.register(Task)
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     7
admin.site.register(Comment)
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     8
admin.site.register(Credit)
15
c6038cbf8a39 addded link to view claims in 'view task' page .
nishanth
parents: 4
diff changeset
     9
admin.site.register(Claim)