130c00c8ee
Please review carefully.
11 lines
272 B
Python
11 lines
272 B
Python
from django.contrib import admin
|
|
from django.utils.html import format_html
|
|
from django.core.urlresolvers import reverse
|
|
|
|
from utils.mailer import BaseEmail
|
|
|
|
from .models import HostingOrder, HostingBill
|
|
|
|
|
|
admin.site.register(HostingOrder)
|
|
admin.site.register(HostingBill)
|