Sith/counter/admin.py

7 lines
128 B
Python
Raw Normal View History

2016-03-28 12:54:35 +00:00
from django.contrib import admin
from counter.models import Counter
# Register your models here.
admin.site.register(Counter)