Derek Hohls

Results 91 comments of Derek Hohls

You cannot use `DepartmentListFilter` in the `suit_list_filter_horizontal` configuration. You need to use the matching `parameter_name` (in your case `department`) that you are using to configure the `DepartmentListFilter` class. This must...

@pulse-mind Appreciate that. I hope he can too.

Is there any activity at all from @darklow recently on this project? See also #657 (support for Django 2)

See #672 You need to add context to the render: https://docs.djangoproject.com/en/1.11/ref/contrib/admin/#adminsite-methods For example: ``` def index(self, request): return render( request=request, template_name='admin/index.html', context=dict( admin.site.each_context(request), foo=bar) ) ) ``` (and obviously, import...

You'd need to use Python code to construct the tuple from a list e.g. ``` >>> x = [{'label': 'y', 'url': 'x' }, {'label': 'a', 'url': 'b' }] >>> a...

Look in `settings\apps.py`. My file looks something like: ``` # -*- coding: utf-8 -*- """ Django Suit Configuration Module """ from django.apps import AppConfig from django import get_version from suit.apps...

@tyctor I am not using the method you describe so I am not sure how to help.

My example is shown above.

Is there any activity at all from @darklow recently on this project?

Is suit **really** dependant on access to `maxcdn.bootstrapcdn.com` - would it not be better to make a local copy available (esp for internal use of Django where internet access is...