Questions tagged [django-grappelli]

django-grappelli is a grid-based alternative/extension to the Django administration interface

django-grappelli is a grid-based alternative/extension to the Django administration interface.

154 questions
0
votes
1 answer

Django grappeli - include link to custom admin page in side-panel dropdown-menu

I use Django 1.7 with Mezzaine. I create a custom admin page according to: Django - custom admin page not releated to a model I would like to include link to that page to grappeli side-panel dropdown-menu. Is there a way how to achieve that without…
matousc
  • 3,698
  • 10
  • 40
  • 65
0
votes
1 answer

Django 1.4 to 1.6 conversion compatibilty

I want upgrade my existing django1.4 site to django1.7(Most possible latest version) Do all the existing packages working in 1.4 will work 1.7? I want know the compatibility of the popular modules like, grappelli, south, django-filebrowser, pillow…
user2088432
  • 375
  • 1
  • 4
  • 17
0
votes
1 answer

Is it possible to customise the look of grappelli?

I'm building a site using Django and Grappelli. One of the requirements is to have a consistent theme across the entire site, both front end and admin interfaces. At the least, the two things I would like to do are replace sections of the top bar to…
user764357
0
votes
2 answers

Django model layout with multiple columns

My admin page for a specific model has two stackedInlines. Currently they display one under the other. I would like them to display side by side so The page would look like this (don't have enough reputation to embed the image :[ ) Any easy way…
Astraub
  • 307
  • 1
  • 2
  • 10
0
votes
1 answer

Override method in Django third party library (Filebrowser)

I'm using Grappelli together with Filebrowser and I found a bug when uploading images with a file extension in uppercase(image.PNG). If they end in uppercase a thumbnail will be created everytime the filebrowser page is refreshed. I found this…
JOSEFtw
  • 9,781
  • 9
  • 49
  • 67
0
votes
1 answer

Django Grappelli for django 1.5.1

I am trying to use django-grappelli with django version 1.5.1 but after setup, all the requirements for grappelli, i am having the following error. TemplateSyntaxError at /admin/ 'firstof' is not a valid tag or filter in tag library 'future' In…
A.J.
  • 8,557
  • 11
  • 61
  • 89
0
votes
1 answer

grappelli NestedTabularInline how to disable "add another..." button

I am using grappeli for my admin, I have nested models using NestedTabularInline I would like to have only list without "add another..." in the bottom. Or how to change grp-add-handler so that it is hidden, without need to build custom template..
andilabs
  • 22,159
  • 14
  • 114
  • 151
0
votes
1 answer

how to hide some models in django grappelli admin?

How to hide some of the models? I need them registred to be used by other models, while calling via FK or nested etc. I found one solution which is rather much about view layer of (MVC)…
andilabs
  • 22,159
  • 14
  • 114
  • 151
0
votes
1 answer

django admin actions vs save in model class

I have a boolean field in my model indicating, that email with some info to the user was sent. When I update it in admin I use save() method from the model, and there actually the email is being sent. And this works. BUT: When I try to use my…
andilabs
  • 22,159
  • 14
  • 114
  • 151
0
votes
0 answers

How to display autocomplete in django-autocomplete-light 2.0.0a15?

I recently updated my django-autocomplete-light from version 1.2.3 to 2.0.0a15. I followed the tutorial what's need to do for the upgrade but still my autocomplete don't show up. The autocomplete are working fine in the previous…
0
votes
1 answer

Python-admin grappeli - missing Action drop down for delete (or other actions)

I'm toying with Grappeli for my django admin. After following the setup instructions I can't find the action dropdown. allowing me for example to remove an object. which makes it unusable. any Ideas? clues to what am I doing wrong? I'm using…
alonisser
  • 11,542
  • 21
  • 85
  • 139
0
votes
1 answer

Generic relations missing with grappelli

I'm using the last svn revision of grappelli and rev 11840 of django (before multidatabases and stuff), and i'm trying to use generic relations in the admin, but doesn't work, The model: class AutorProyectoLey(DatedModel): tipo_autor =…
diegueus9
  • 29,351
  • 16
  • 62
  • 74
0
votes
1 answer

Django Grappelli - Autocomplete and french accents

I have some problems with Django Grappelli Autocomplete. It works just fine but for some reason, if the name has french accents (é,è,etc) the field shows an '?'. Here is the screenshot: http://gyazo.com/64dfb579ccf9e11c0f0d9ee8337edec4 Here is my…
Ara Sivaneswaran
  • 365
  • 1
  • 10
  • 25
0
votes
0 answers

App name is not translated

Can't figure out why my app is not translated. Here is the what I have in django.po file: #: products/__init__.py:4 msgid "Products" msgstr "Продукты" And I've put this into app's __init__ file: from django.utils.translation import ugettext_lazy as…
Dmitrii Mikhailov
  • 5,053
  • 7
  • 43
  • 69
0
votes
1 answer

In my my project when I installed django-filebrowser some conflicts happened, conflicts in style only not in any functions

In my project I want to integrate fluent_dashborad for the admin interface, when I installed django-filebrowser some conflicts happened, conflicts in style only but not in any functionality. this is my installed apps, INSTALLED_APPS = ( …