DEV Community

Cover image for Django Dynamic DataTables - Free Tool (Updated)
Sm0ke
Sm0ke

Posted on • Updated on • Originally published at github.com

Django Dynamic DataTables - Free Tool (Updated)

Hello Coders!

This article presents an open-source tool that builds server-side paginated DataTables with minimum effort. The input expected by the Dynamic DataTables module is the model definition plus a single line in the configuration. Sources are published on GitHub and the permissive (MIT) license allows the incorporation in commercial projects or use for eLearning activities. Thanks for reading!


DevTool Highlights

Data pagination can be useful in many use cases like management and interaction with registered users of a popular app, students of a class, etc. For all those cases, this tool might be helpful.

Here are the features provided on top of every model defined in our Django project, without any coding effort:

  • βœ… Manages the data for any model
  • βœ… One-line configuration
  • βœ… Server-side pagination
  • βœ… Search, Data Filters
  • βœ… Exports in PDF, CSV formats

Quick Start in Docker

The tool is pre-configured to enable the Dynamic DataTables UI for a simple Books model. Once the project is downloaded and started we should be able to interact with the UI without any efforts.

πŸ‘‰ Step 1 - Download the code from GitHub

$ git clone https://github.com/app-generator/devtool-django-dynamic-datatb.git
$ cd devtool-django-dynamic-datatb
Enter fullscreen mode Exit fullscreen mode

πŸ‘‰ Step 2 - Start the APP in Docker

$ docker-compose up --build
Enter fullscreen mode Exit fullscreen mode

At this point, we can visit the app in the browser. The dynamic view is live at http://localhost:5085/datatb/books.

Django Dynamic DataTables - Open-Source tool for developers (GIF nimated presentation).


How it works

The tool builds a generic layout on top of each model defined in the project and enabled in the configuration.

To showcase the tool, sources are shipped with a working sample for the Books model - Here are the relevant parts:

πŸ‘‰ (1) Books Model Definition - in apps/models.py file

class Book(models.Model): 
    title = models.CharField(max_length=100)
Enter fullscreen mode Exit fullscreen mode

πŸ‘‰ (2) Configuration for Books model

DYNAMIC_DATATB = {
    'books': "Book",
}
Enter fullscreen mode Exit fullscreen mode

The pattern used in this Python DICT is to use the URL segment as key and Model as the entity to be processed.

So, the above settings enable the Dynamic DataTB for Books model using url: http://localhost:8000/datatb/books


Video Presentation

A full demonstration of this feature can be found on YouTube:


Next Steps

The roadmap of the product includes the following evolutions:

  • βœ… Bulk Data Provisioning (drop zone)
  • βœ… Independent module installation via PIP
  • βœ… Styling Option: Tailwind or BS5
    • Note: currently only BS5 is supported.

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

Django API Generator

Top comments (4)

Collapse
 
uithemes profile image
ui-themes

Really nice

Collapse
 
sm0ke profile image
Sm0ke

πŸš€πŸš€

Collapse
 
crearesite profile image
WebsiteMarket

The server-side helps a ton.
Thank you

Collapse
 
sm0ke profile image
Sm0ke

πŸš€πŸš€