pytask/profile/admin.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Sun, 30 Jan 2011 20:06:16 +0530
changeset 530 ab9b9e59de9d
parent 375 40f1ef7a46d8
permissions -rw-r--r--
Display list of tasks related to a Textbook and allow coordinator to create them.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
375
40f1ef7a46d8 added admin files
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
from django.contrib import admin
40f1ef7a46d8 added admin files
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
40f1ef7a46d8 added admin files
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
from pytask.profile.models import Profile
40f1ef7a46d8 added admin files
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
40f1ef7a46d8 added admin files
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
admin.site.register(Profile)