The Wayback Machine - https://web.archive.org/web/20200705194410/https://github.com/topics/django-admin
Skip to content
#

django-admin

Here are 356 public repositories matching this topic...

gamesbook
gamesbook commented Jun 27, 2017

If this is a bug please specify versions you're using first.

Django version: 1.10.7
Django Suit version: 2.0a1
Python version: 3.5.3

Issue:

overlap

As can be seen, on narrower screens, when there are a number of filters, the filter boxes "wrap around" but the +Add button covers pa

WhyNotHugo
WhyNotHugo commented Oct 16, 2019

The docs state that creating a queryset from a manager should be done using

my_objects = PolymorphicManager.from_queryset(MyQuerySet)()

However, the standard django pattern is to use:

my_objects = MyQuerySet.as_manager()

Is there a reason to support a diffe

jadhavganesh
jadhavganesh commented Jan 15, 2018

Following errors are found when flake8 is run,
branch: master
$ pip install flake8
$ flake8 --ignore=E501 .
./setup.py:48:19: E251 unexpected spaces around keyword / parameter equals
./setup.py:48:21: E251 unexpected spaces around keyword / parameter equals
./docs/conf.py:14:11: E401 multiple imports on one line
./docs/conf.py:26:1: E265 block comment should start with '# '
./docs/conf.py:

SniperM99
SniperM99 commented Feb 19, 2020

按照书上提示 , 将 css 与 js 引入到自定义的 class Media 中
代码片段如下:

    class Media:
        css = {
            'all' : ('https://cdn.bootcss.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css'),
        }
        js = ('https://cdn.bootcss.com/bootstrap/4.0.0-beta.2/js/bootstrap.bundle.js',)

当运行 runserver 后, 页面无任何变化 , 提示框里提示很多
"GET /static/.* HTTP/1.1" 404 1616 的字样(.*表示出现的各种字符统称)

ashishnitinpatil
ashishnitinpatil commented Feb 17, 2020

Basically, when a particular inline action is carried out on a given model's entry, we should

  1. suggest to register the inline action inside django admin's history
  2. suggest to check if user has correct permissions to carry out said inline action

Suggestions can be in just the README &/or the demo app. Also, if these could be incorporated into a functionality or feature somehow, that woul

Improve this page

Add a description, image, and links to the django-admin topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the django-admin topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.