blob: f9ae86eecaf103011ff66dd21ebac6dc4194023d (
plain)
1
2
3
4
5
6
7
8
9
10
|
'''
Created on Jan 31, 2011
@author: leifj
'''
from django.contrib import admin
from meetingtools.apps.stats.models import UserMeetingTransaction
admin.site.register(UserMeetingTransaction)
|