mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-17 22:46:41 +01:00
8 lines
177 B
Python
8 lines
177 B
Python
from django.contrib import admin
|
|
|
|
from apps.dca.models import DCAStrategy, DCAEntry
|
|
|
|
# Register your models here.
|
|
admin.site.register(DCAStrategy)
|
|
admin.site.register(DCAEntry)
|