{% extends "admin/base_new.html" %} {% block title %}{{ index_title }} - {{ site_title }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
Manage your application data
Register models with the admin to get started.
from aksara.contrib.admin import site
from myapp.models import MyModel
site.register(MyModel)