5 lines
99 B
Python
5 lines
99 B
Python
|
from django.contrib import admin
|
||
|
from .models import CounterUser
|
||
|
|
||
|
admin.site.register(CounterUser)
|