13 lines
179 B
Python
13 lines
179 B
Python
|
|
from django.contrib import admin
|
||
|
|
|
||
|
|
from horilla_automations.models import MailAutomation
|
||
|
|
|
||
|
|
# Register your models here.
|
||
|
|
|
||
|
|
|
||
|
|
admin.site.register(
|
||
|
|
[
|
||
|
|
MailAutomation,
|
||
|
|
]
|
||
|
|
)
|