taskapp/admin.py
author nishanth
Thu, 04 Feb 2010 19:34:03 +0530
changeset 9 3ad980fc23ca
parent 1 7818992cbf83
child 11 7c9fea7e28c8
permissions -rw-r--r--
removed views.py from taskapp and created a package views. added auth_profile setting to settings.py
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
9
3ad980fc23ca removed views.py from taskapp and created a package views. added auth_profile setting to settings.py
nishanth
parents: 1
diff changeset
     3
from pytask.taskapp.models.user import Profile
3ad980fc23ca removed views.py from taskapp and created a package views. added auth_profile setting to settings.py
nishanth
parents: 1
diff changeset
     4
from pytask.taskapp.models.task import Task
3ad980fc23ca removed views.py from taskapp and created a package views. added auth_profile setting to settings.py
nishanth
parents: 1
diff changeset
     5
from pytask.taskapp.models.credit import Credit
3ad980fc23ca removed views.py from taskapp and created a package views. added auth_profile setting to settings.py
nishanth
parents: 1
diff changeset
     6
from pytask.taskapp.models.comment import Comment
3ad980fc23ca removed views.py from taskapp and created a package views. added auth_profile setting to settings.py
nishanth
parents: 1
diff changeset
     7
3ad980fc23ca removed views.py from taskapp and created a package views. added auth_profile setting to settings.py
nishanth
parents: 1
diff changeset
     8
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
     9
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
    10
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
    11
admin.site.register(Credit)