mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-29 21:52:09 +02: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)
|