pytask/profile/admin.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 28 Jan 2011 02:27:40 +0530
changeset 519 84709567f47a
parent 375 40f1ef7a46d8
permissions -rw-r--r--
Use the release version of South than the latest version. South is very critical for our application. So don't take any risk with the users data. Use the release version.
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)