mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-12-06 21:01:42 +01:00
7 lines
158 B
Python
7 lines
158 B
Python
from django.contrib import admin
|
|
|
|
from allianceauth.optimer.models import OpTimer, OpTimerType
|
|
|
|
admin.site.register(OpTimerType)
|
|
admin.site.register(OpTimer)
|