Modern theme for Django admin interface

Overview

Django Suit

Modern theme for Django admin interface.

Django Suit is alternative theme/skin/extension for Django administration interface.

License

Docs & Support

Changelog

Note: Django Suit v2.0 is in active development and not yet ready for production use.

Read more here: Todo: Add issue refernce

Contributing

See Contributing documentation

Build Status

Django Suit uses Travis CI to perform tests on different Django and Python versions.

Tested using Python: 2.7-3.4 and PyPy. Django: 1.9+ and Django Suit v2.0 alpha:

Build Status - v2 branch Build Status - develop branch

Preview

https://cloud.githubusercontent.com/assets/445304/12699480/3eee898e-c7c5-11e5-931c-ba1b0cabdecb.png

alt: Django Suit Preview :target: http://v2.djangosuit.com/admin/
Comments
  • Django Suit rewrite on Bootstrap 3

    Django Suit rewrite on Bootstrap 3

    Few days ago i started Django suit rewrite on Bootstrap 3 and i will keep posting updates in this issue.

    Few previous notes about BS3 you can see here: https://github.com/darklow/django-suit/issues/134#issuecomment-39536028

    In nearest time i will push bs3 branch to github and you will be able to test it out. However it will be very early stage and it will be not ready for production for a while.

    Currently i am rewriting DS using Django 1.7 rc2 and hopefully i will be able to support both Django 1.6 and 1.7 version.

    New features

    • Two menu variations: Horizontal or vertical
    • Two color themes: Dark / Light theme
    • Configurable, properly aligned multi-column forms/fieldsets
    • and many more

    Sneak preview

    Few of new Django Suit design drafts (work in progress)

    suit2-vertical-dark

    Horizontal menu:

    suit2-horizontal-dark

    suit2-horizontal-light

    feature 
    opened by darklow 79
  • Regression: SortableTabularInline re-ordering not persisting to db in v0.2.4

    Regression: SortableTabularInline re-ordering not persisting to db in v0.2.4

    This works in v0.2.3, and I'm guessing this commit may be the issue:

    https://github.com/darklow/django-suit/commit/435afaa7a0b0bab5cc0143557fdd312ea67f9f5d

    Full compare between versions: https://github.com/darklow/django-suit/compare/8f98158aa8c61dac11b03eb3e04fd6f989f531d7...22fbc800dcc069aade735d69d6ef164d31b35693

    Cheers :beers:

    opened by adamJLev 25
  • Date and Datetime field not show calendar

    Date and Datetime field not show calendar

    Django 1.9.2 but i've tried to downgrade, i've the same issue. On DateField i can see the "today" link and the calendar ICON but on click not show calendar. I've tryed with and without Suit widget with the same result. Disabling suit it works normally.

    image

    image

    The html is loaded correectly but the JS is not "clickable" on the icon. if i call openCalendar() it works. image

    opened by gibosler 24
  • Grid or Card view

    Grid or Card view

    In some situations, for example when working with images or model objects that are strongly associated with images, the standard table view of Django admin app is less suitable. A Grid like view, where each model instance is rendered within defined rectangular boundaries, would be more appropriate and make better use of screen real estate. Using the fluid characteristics of Bootstrap such a layout would work quite well.

    Would you consider this a feature for Django Suit?

    opened by skndn60 22
  • Warnings with 1.8 regarding settings.py templates

    Warnings with 1.8 regarding settings.py templates

    I am getting the following issue:

    System check identified some issues:
    
    WARNINGS:
    ?: (1_8.W001) The standalone TEMPLATE_* settings were deprecated in Django 1.8 and the \
    TEMPLATES dictionary takes precedence. You must put the values of the following settings into \
    your default TEMPLATES dict: TEMPLATE_CONTEXT_PROCESSORS.
    

    How can I declare my templates, my current settings.py are as follow:

    TEMPLATES = [
        {
            'BACKEND': 'django.template.backends.django.DjangoTemplates',
            'DIRS': ['/home/mexicofan/mexicofan2015/static/templates'],
            'APP_DIRS': True,
            'OPTIONS': {
                'context_processors': [
                    'django.template.context_processors.debug',
                    'django.template.context_processors.request',
                    'django.contrib.auth.context_processors.auth',
                    'django.contrib.messages.context_processors.messages',
                ],
            },
        },
    ]
    

    ....

    from django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORS as TCP
    
    TEMPLATE_CONTEXT_PROCESSORS = TCP + (
            'django.core.context_processors.request',
    )
    

    Also for some reason the admin templates are not shown on my admin but the regular site do.

    opened by Jzarecta 18
  • django-mptt tree sortable

    django-mptt tree sortable

    I tried to follow the doc example for django-mptt tree sortable

    model.py

        class FooterLink(MPTTModel):
            link_text = models.CharField(max_length=120, blank=True,
                            help_text=_('With this field you can overwrite the title'
                                        ' that is displayed in the footer menu.'))
            page_link = PageField(null=True, blank=True,
                             related_name='footer_links')
            parent = TreeForeignKey('self', null=True,
                                    blank=True, related_name='children',
                                    verbose_name=_('Parent Link'))
            order = models.PositiveIntegerField()
    
            class MPTTMeta:
                order_insertion_by = ['order']
    
            def save(self, *args, **kwargs):
                super(FooterLink, self).save(*args, **kwargs)
                FooterLink.objects.rebuild()
    
            def __unicode__(self):
                if self.link_text:
                    return self.link_text
                if page_link:
                    page_link.get_page_title()
                return u'%s %s' % (self._meta.verbose_name.title(), self.pk)
    

    admin.py

        from django.contrib import admin
    
        from suit.admin import SortableModelAdmin
        from mptt.admin import MPTTModelAdmin
    
        from .models import FooterLink
    
        class FooterLinkAdmin(MPTTModelAdmin, SortableModelAdmin):
            mptt_level_indent = 20
            list_display = ('link_text', 'page_link')
            sortable = 'order'
    
        admin.site.register(FooterLink, FooterLinkAdmin)
    

    But its not being displayed correctly in django admin

    screen shot 2013-09-10 at 14 32 04

    Please Help

    [django-suit==0.2.4]

    opened by mishbahr 17
  • Change app name feature

    Change app name feature

    Add a config option to rename apps, e.g.

    SUIT_CONFIG = {
        ...
        'APP_NAMES': {
            'auth': "Users and Groups",
            'flatpages': "Static sites",
        },
        ...
    }
    
    feature 
    opened by jonashaag 17
  • CSS not applied to admin panel.

    CSS not applied to admin panel.

    Hello Group,

    I finally got the admin panel sort of working. The css does not seem to be applied. Any clues?

    I created a demo user

    user: demo password: demo

    http://162.243.201.237/admin

    screen shot 2016-06-01 at 11 27 11 am

    opened by RLJMedia 14
  • I see the demo,How the custom view show on?

    I see the demo,How the custom view show on?

    First thanks a lot to develop this repository!I have a question that how can I build custom view in django-suit?I see the demo have the example.But I don't know the source code to consult on,Can you help me?

    Thanks again!

    opened by hebijiandai 14
  • Sortable issues

    Sortable issues

    Hi darklow,

    Thanks for django-suit! It's a nice admin theme and I appreciate your approach using Bootstrap. I am glad you're working on the Sortable feature, but unfortunately found two issues:

    • Using SortableTabularInline for inlines, if the main object does not extend SortableModelAdmin, the following exception occurs while editing an object:

    AttributeError: type object 'ModelForm' has no attribute 'Meta'

    in suit/admin.pu r.54: self.form.Meta.widgets[self.sortable] = SortableListForm.Meta.widgets[

    • Using SortableTabularInline with extra inlines (extra > 0), and submitting an object with empty 'extra' inlines:

    Form validation error on empty inline objects.

    .. probably because the SortableTabularInline sets the sortable field?

    Hope you can take a look at this!

    opened by woutor 14
  • Missing PNG/GIF icons in Django 1.9

    Missing PNG/GIF icons in Django 1.9

    In Django 1.9, PNG and GIF admin icons were replaced with SVG icons (and therefore breaking IE8 compatibility, which Django now consider to be at end-of-life).

    This causes missing icons to be displayed in the admin for icons that are referenced by path. The only one of these I have been able to find so far is /static/admin/img/icon-unknown.gif but I'm sure there are more of these that have been affected.

    I guess this one might pose a bit of an issue if this project still supports IE8 although a simple fix could be to carry on with the if django_version < 1.9 pattern as in similar issues.

    opened by saxbophone 13
  • object-tools actions not rendered

    object-tools actions not rendered

    Hi there,

    after updating django from 3.1 to 3.2 buttons that usally are in object-tools does not rendered anymore. Moreover they are not appear even in the HTML

    Has someone the same problem? main content ui does not contains it anymore :(

    opened by alvarogf97 0
  • Make django-suit compatible with Django 4.x.x

    Make django-suit compatible with Django 4.x.x

    In this commit an error:

    "django.template.library.InvalidTemplateLibrary: Invalid template library specified. ImportError raised when trying to load 'suit.templatetags.suit_menu': cannot import name 'ugettext_lazy' from 'django.utils.translation' python3.10/site-packages/django/utils/translation/init.py"

    has been fixed and now django-suit is compatible with Django version 4 by importing the gettext_lazy in admin_filters and menu files

    opened by Abdurahman-hassan 0
  • Make django-suit compatible with Django 4.x.x

    Make django-suit compatible with Django 4.x.x

    In this commit an error:

    "django.template.library.InvalidTemplateLibrary: Invalid template library specified. ImportError raised when trying to load 'suit.templatetags.suit_menu': cannot import name 'ugettext_lazy' from 'django.utils.translation' python3.10/site-packages/django/utils/translation/init.py"

    has been fixed and now django-suit is compatible with Django version 4 by importing the gettext_lazy in admin_filters and menu files

    opened by pvenv 3
  • Row styling failing silently?

    Row styling failing silently?

    Seems row styling is failing. Code below does not result in any color changes and no errors that I can see. Python 3.7 and Django 1.18

        def suit_row_attributes(self, obj, request):
            logger.debug('color filler for %s', obj)
            try:
                css_class = {
                    True: 'warning',
                    False: '',
                }.get(obj.filler)
                if obj.filler is False:
                    css_class = {
                        True: 'success',
                        False: '',
                    }.get(obj.selected)
                if css_class:
                    return {'class': css_class}
            except AttributeError as err:
                logger.error('Cannot color filler - %s', err)
    
    opened by gamesbook 0
  • add subitems for the suit menu subitems(3 level tree)

    add subitems for the suit menu subitems(3 level tree)

    Is it Possible to structure a 3 level tree with django-suit menu? If yes how can I do this or if there is another way to customize in the menu. what i need is something like that:

    Main Menu| |- SubItem1 |- SubItem2 |- SubItem2-1 |- SubItem2-2 |- SubItem3

    opened by ElsawyAhmed 0
  • Minimum changes to make it work for Djnago 3.2

    Minimum changes to make it work for Djnago 3.2

    These are the changes:

    • Fix imports and deprecated methods coming from Django.
    • Override and remove the navbar that has been introduced in Django 3.1
    • Fix styling issues:
      • Right filter in changelist not showing.
      • missing jquery library.

    I haven't updated the demo site at all. So there might be something to be fixed there.

    opened by uzi0espil 0
Owner
Kaspars Sprogis
Entrepreneur, developer and skydiving photographer.
Kaspars Sprogis
Modern theme for Django admin interface

Django Suit Modern theme for Django admin interface. Django Suit is alternative theme/skin/extension for Django administration interface. Project home

Kaspars Sprogis 2.2k Dec 29, 2022
fastapi-admin is a fast admin dashboard based on FastAPI and TortoiseORM with tabler ui, inspired by Django admin.

fastapi-admin is a fast admin dashboard based on FastAPI and TortoiseORM with tabler ui, inspired by Django admin.

fastapi-admin 1.6k Dec 30, 2022
Modern responsive template for the Django admin interface with improved functionality. We are proud to announce completely new Jet. Please check out Live Demo

Django JET Modern template for Django admin interface with improved functionality Attention! NEW JET We are proud to announce completely new Jet. Plea

Geex Arts 3.4k Dec 29, 2022
A Django admin theme using Twitter Bootstrap. It doesn't need any kind of modification on your side, just add it to the installed apps.

django-admin-bootstrapped A Django admin theme using Bootstrap. It doesn't need any kind of modification on your side, just add it to the installed ap

null 1.6k Dec 28, 2022
Responsive Theme for Django Admin With Sidebar Menu

Responsive Django Admin If you're looking for a version compatible with Django 1.8 just install 0.3.7.1. Features Responsive Sidebar Menu Easy install

Douglas Miranda 852 Dec 2, 2022
A Django admin theme using Twitter Bootstrap. It doesn't need any kind of modification on your side, just add it to the installed apps.

django-admin-bootstrapped A Django admin theme using Bootstrap. It doesn't need any kind of modification on your side, just add it to the installed ap

null 1.6k Dec 28, 2022
Django Semantic UI admin theme

Django Semantic UI admin theme A completely free (MIT) Semantic UI admin theme for Django. Actually, this is my 3rd admin theme for Django. The first

Alex 69 Dec 28, 2022
aiohttp admin is generator for admin interface based on aiohttp

aiohttp admin is generator for admin interface based on aiohttp

Mykhailo Havelia 17 Nov 16, 2022
📱 An extension for Django admin that makes interface mobile-friendly. Merged into Django 2.0

Django Flat Responsive django-flat-responsive is included as part of Django from version 2.0! ?? Use this app if your project is powered by an older D

elky 248 Sep 2, 2022
Disable dark mode in Django admin user interface in Django 3.2.x.

Django Non Dark Admin Disable or enable dark mode user interface in Django admin panel (Django==3.2). Installation For install this app run in termina

Artem Galichkin 6 Nov 23, 2022
A cool, modern and responsive django admin application based on bootstrap 5

django-baton A cool, modern and responsive django admin application based on bootstrap 5 Documentation: readthedocs Live Demo Now you can try django-b

Otto srl 678 Jan 1, 2023
Jet Bridge (Universal) for Jet Admin – API-based Admin Panel Framework for your application

Jet Bridge for Jet Admin – Admin panel framework for your application Description About Jet Admin: https://about.jetadmin.io Live Demo: https://app.je

Jet Admin 1.3k Dec 27, 2022
A jazzy skin for the Django Admin-Interface (official repository).

Django Grappelli A jazzy skin for the Django admin interface. Grappelli is a grid-based alternative/extension to the Django administration interface.

Patrick Kranzlmueller 3.4k Dec 31, 2022
django's default admin interface made customizable. popup windows replaced by modals. :mage: :zap:

django-admin-interface django-admin-interface is a modern responsive flat admin interface customizable by the admin itself. Features Beautiful default

Fabio Caccamo 1.3k Dec 31, 2022
A jazzy skin for the Django Admin-Interface (official repository).

Django Grappelli A jazzy skin for the Django admin interface. Grappelli is a grid-based alternative/extension to the Django administration interface.

Patrick Kranzlmueller 3.4k Dec 31, 2022
An improved django-admin-tools dashboard for Django projects

django-fluent-dashboard The fluent_dashboard module offers a custom admin dashboard, built on top of django-admin-tools (docs). The django-admin-tools

django-fluent 326 Nov 9, 2022
A Django app for easily adding object tools in the Django admin

Django Object Actions If you've ever tried making admin object tools you may have thought, "why can't this be as easy as making Django Admin Actions?"

Chris Chang 524 Dec 26, 2022
Jazzy theme for Django

Django jazzmin (Jazzy Admin) Drop-in theme for django admin, that utilises AdminLTE 3 & Bootstrap 4 to make yo' admin look jazzy Installation pip inst

David Farrington 1.2k Jan 8, 2023
Drop-in replacement of Django admin comes with lots of goodies, fully extensible with plugin support, pretty UI based on Twitter Bootstrap.

Xadmin Drop-in replacement of Django admin comes with lots of goodies, fully extensible with plugin support, pretty UI based on Twitter Bootstrap. Liv

差沙 4.7k Dec 31, 2022