Skip to content

Instantly share code, notes, and snippets.

View adinhodovic's full-sized avatar
💻
Working from home

Adin Hodovic adinhodovic

💻
Working from home
View GitHub Profile
{
"__inputs": [ ],
"__requires": [ ],
"description": "A dashboard that monitors Django which focuses on giving a overview for the system (requests, db, cache). It is created using the [Django-mixin](https://github.com/adinhodovic/django-mixin).",
"editable": true,
"links": [
{
"tags": [
"django",
"django-mixin"
@adinhodovic
adinhodovic / admin.py
Last active May 30, 2024 09:48 — forked from noviluni/admin.py
Large Table Paginator for Django: Scale Django admin pages and avoid timeouts.
from django.contrib.admin import ModelAdmin
from .paginator import LargeTablePaginator
class MyTableAdmin(ModelAdmin):
...
large_table_paginator = True
...