Skip to content

Commit

Permalink
feat: Add description of the admin feature to the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mkleszcz committed May 12, 2023
1 parent bb279db commit 6b69ab2
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion packages/internal/docs/docs/v2/introduction/features/admin.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,20 @@
title: Admin panel
---

TBD
The SaaS Boilerplate provides an admin feature that allows developers to manage data and perform administrative tasks
using the [Django admin site](https://docs.djangoproject.com/en/4.2/ref/contrib/admin/). The admin feature is designed
to provide a quick, model-centric interface that allows developers to manage data and perform custom admin actions.

### Using the Django Admin Site

The SaaS Boilerplate uses the Django admin site to provide a user-friendly interface for managing data. The Django admin
site is a powerful tool that allows developers to manage data and perform administrative tasks, such as adding, editing,
and deleting records. The admin site is built on top of Django's models, which means that it can read metadata from
models to provide a quick, model-centric interface.

### Access to Custom Admin Actions

The SaaS Boilerplate admin panel provides access to custom admin actions that allow developers to perform specific tasks
related to their application. For example, it’s possible to export user data using a custom admin action. The custom
admin action can be added to the admin site using the built-in admin action interface, which makes it easy to add custom
functionality to the admin site.

0 comments on commit 6b69ab2

Please sign in to comment.