pytask/taskapp/admin.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Sun, 24 Jan 2010 19:20:33 +0530
changeset 6 f87d8ee2b9ca
permissions -rw-r--r--
Reorganized the directory structure. Removed unwanted .pyc files.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
f87d8ee2b9ca Reorganized the directory structure. Removed unwanted .pyc files.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     1
from pytask.taskapp.models import Person,Task,Comment,Credit
f87d8ee2b9ca Reorganized the directory structure. Removed unwanted .pyc files.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     2
from django.contrib import admin
f87d8ee2b9ca Reorganized the directory structure. Removed unwanted .pyc files.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     3
f87d8ee2b9ca Reorganized the directory structure. Removed unwanted .pyc files.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     4
admin.site.register(Person)
f87d8ee2b9ca Reorganized the directory structure. Removed unwanted .pyc files.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     5
admin.site.register(Task)
f87d8ee2b9ca Reorganized the directory structure. Removed unwanted .pyc files.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     6
admin.site.register(Comment)
f87d8ee2b9ca Reorganized the directory structure. Removed unwanted .pyc files.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     7
admin.site.register(Credit)