upload/admin.py
author Shantanu <shantanu@fossee.in>
Wed, 20 Jan 2010 14:19:50 +0530
changeset 1 a370c5796d08
child 2 2c1e89e4a5a2
permissions -rw-r--r--
Initialized the registration application.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a370c5796d08 Initialized the registration application.
Shantanu <shantanu@fossee.in>
parents:
diff changeset
     1
from django.contrib import admin
a370c5796d08 Initialized the registration application.
Shantanu <shantanu@fossee.in>
parents:
diff changeset
     2
from workshop_registration.upload.models import Participant
a370c5796d08 Initialized the registration application.
Shantanu <shantanu@fossee.in>
parents:
diff changeset
     3
a370c5796d08 Initialized the registration application.
Shantanu <shantanu@fossee.in>
parents:
diff changeset
     4
admin.site.register(Participant)
a370c5796d08 Initialized the registration application.
Shantanu <shantanu@fossee.in>
parents:
diff changeset
     5