pytask/taskapp/admin.py
author nishanth
Thu, 28 Jan 2010 20:26:54 +0530
changeset 2 3db830ff66ee
child 4 a9c458c7782a
permissions -rw-r--r--
added an app called taskapp and created the models.
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
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     3
from pytask.taskapp.models.user import Profile
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     4
from pytask.taskapp.models.task import Task
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     5
from pytask.taskapp.models.credit import Credit
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     6
from pytask.taskapp.models.comment import Comment
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     7
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     8
admin.site.register(Profile)
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
     9
admin.site.register(Task)
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
    10
admin.site.register(Comment)
3db830ff66ee added an app called taskapp and created the models.
nishanth
parents:
diff changeset
    11
admin.site.register(Credit)