DEV Community

Cover image for AdminKit - A modern Bootstrap 5 template now available in Flask and Django
Sm0ke
Sm0ke

Posted on • Updated on • Originally published at blog.appseed.us

AdminKit - A modern Bootstrap 5 template now available in Flask and Django

Hello Coders,

AdminKit, a professional admin dashboard template based on Bootstrap 5 is now available for download in Flask and Django. The products, released under the MIT license, can be used for unlimited hobby & commercial products.

For support, please use GitHub (issues tracker) or join the Discord Server - 24/7 LIVE Service.

AdminKit - Open-source Bootstrap 5 template, now available in Flask and Django.


βœ… AdminKit - UI Kit

This modern template is released by AdminKit.io under the MIT license. The project can be downloaded directly for GitHub and compiled via modern tooling.

Vendor Notes - A professional package that comes with hundreds of UI components, forms, tables, charts, pages, and icons. Built on top of Bootstrap 5.

Built with Bootstrap 5 - Built on top of the latest version of Bootstrap 5 and HTML5, which means - robust, responsive, and easy to customize.

  • AdminKit - product page
  • AdminKit PRO - the premium version (more components, pages and PREMIUM support)

βœ… AdminKit Flask

Flask version comes with a basic set of modules, database, authentication and deployment scripts for Docker, HEROKU and Gunicorn/Nginx stack.

This simple Flask starter can be complied with ease if the workstation has a Python3 environment and GIT accessible via the terminal. The steps (copied from the README file):


#1 - Clone the sources

$ # Get the code
$ git clone https://github.com/app-generator/flask-adminkit.git
$ cd flask-adminkit
Enter fullscreen mode Exit fullscreen mode

#2 - Install modules

$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Install modules - SQLite Database
$ pip3 install -r requirements.txt
Enter fullscreen mode Exit fullscreen mode

#3 - Start the app

$ # Set the FLASK_APP environment variable
$ export FLASK_APP=run.py
$
$ # Start the application (development mode)
$ # --host=0.0.0.0 - expose the app on all network interfaces (default 127.0.0.1)
$ # --port=5000    - specify the app port (default 5000)  
$ flask run --host=0.0.0.0 --port=5000
$
$ # Access the dashboard in browser: http://127.0.0.1:5000/
Enter fullscreen mode Exit fullscreen mode

Once the project is up & running in the browser, we should see the login page. By default, the app redirects guest users to authenticate. To pass the login, we need to register a new user and use the credentials to Sign IN.


AdminKit - Open-Source Bootstrap 5 template, Flask version.


βœ… AdminKit - Django

The Django version is provided with an identical feature set (full information provided in the README file):

  • SQLite Database, Django Native ORM
  • Modular design, clean codebase
  • Session-Based Authentication, Forms validation
  • Deployment scripts: Docker, Gunicorn / Nginx

To compile and execute the app, please type the following commands using the terminal:

$ # Get the code
$ git clone https://github.com/app-generator/django-adminkit.git
$ cd django-adminkit
$
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Install modules - SQLite Storage
$ pip3 install -r requirements.txt
$
$ # Create tables
$ python manage.py makemigrations
$ python manage.py migrate
$
$ # Start the application (development mode)
$ python manage.py runserver # default port 8000
$
$ # Access the web app in the browser: http://127.0.0.1:8000/
Enter fullscreen mode Exit fullscreen mode

To pass the login, please create a new user using the registration page or createsuperuser command.


AdminKit - Settings Page

AdminKit - Open-Source Bootstrap 5 template, settings page.


AdminKit - Google Maps Page

AdminKit - Open-Source Bootstrap 5 template, Google maps page.


Thanks for reading! For more resources, feel free to access:

Top comments (2)

Collapse
 
Sloan, the sloth mascot
Comment deleted
Collapse
 
sm0ke profile image
Sm0ke

Yw! πŸš€πŸš€