Skip to main content

Advanced tables for django cruds

Project description

Django Scotty

Advanced table views for Django with filters, exports, and bulk actions.

Features

  • 🚀 Enhanced Table Views: Built on top of django-tables2 with additional functionality
  • 🎯 Filtering: Integrated django-filters support with beautiful UI
  • 📊 Export to Excel: Export table data to XLS/XLSX formats using tablib
  • Bulk Actions: Perform actions on multiple records at once
  • 🎨 Modern UI: Beautiful templates using django-cotton and Bootstrap
  • 🔧 Customizable: Easy to extend and customize for your needs

Installation

Install using pip:

pip install django-scotty

Or using uv:

uv pip install django-scotty

Quick Start

  1. Add django_scotty to your INSTALLED_APPS:
INSTALLED_APPS = [
    ...
    'django_cotton',
    'django_tables2',
    'django_filters',
    'django_scotty',
    ...
]
  1. Create a table view in your views.py:
from django_scotty.list_views.helpers import CottonTableView
import django_tables2 as tables
from .models import YourModel

class YourModelTable(tables.Table):
    class Meta:
        model = YourModel
        fields = ['field1', 'field2', 'field3']

class YourModelListView(CottonTableView):
    model = YourModel
    table_class = YourModelTable
    title = 'Your Model List'
    paginate_by = 25
  1. Add to your urls.py:
from django.urls import path
from .views import YourModelListView

urlpatterns = [
    path('your-model/', YourModelListView.as_view(), name='yourmodel-list'),
]

Advanced Features

Filtering

Add a FilterSet to enable filtering:

import django_filters

class YourModelFilter(django_filters.FilterSet):
    class Meta:
        model = YourModel
        fields = ['field1', 'field2']

class YourModelListView(CottonTableView):
    model = YourModel
    table_class = YourModelTable
    filterset_class = YourModelFilter

Export to Excel

Export functionality is enabled by default. Users can click the "Export to XLS" button.

Bulk Actions

Define custom actions in your view:

from django_scotty.list_views.helpers import CottonTableView, action

class YourModelListView(CottonTableView):
    model = YourModel
    table_class = YourModelTable
    
    @action(short_description="Mark as processed")
    def mark_processed(self, request, queryset):
        queryset.update(processed=True)
        return self.success_message("Records marked as processed")

Requirements

  • Python >= 3.8
  • Django >= 3.2
  • django-cotton >= 0.9.0
  • django-tables2 >= 2.4.0
  • tablib[xls,xlsx] >= 3.0.0
  • django-filter >= 22.1

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Credits

Built with:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_scotty-0.1.3.tar.gz (12.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_scotty-0.1.3-py3-none-any.whl (18.7 kB view details)

Uploaded Python 3

File details

Details for the file django_scotty-0.1.3.tar.gz.

File metadata

  • Download URL: django_scotty-0.1.3.tar.gz
  • Upload date:
  • Size: 12.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.19

File hashes

Hashes for django_scotty-0.1.3.tar.gz
Algorithm Hash digest
SHA256 8fde8cb8f0f94c1a5b54495755d445d85d95ef3ce18f3bb9007c748453a4beed
MD5 8f8f5707ff9d70b9962f9afadb89fa2e
BLAKE2b-256 cbdc3b16d15a133e15e6d219a15d01f5c3492744ddfe05ebc1b04ba2bb6e9670

See more details on using hashes here.

File details

Details for the file django_scotty-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for django_scotty-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7fd0672b2d977eda9801ca0a67d6713452cf44c4975b0a0c84e7aeea6573ef46
MD5 c028d6ea49f941c16a7ebdaede143478
BLAKE2b-256 677aff9d308f557fe3cd94628bdf93295e46e1913dcca5faa3526119803a585c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page