| 25 | === Remove hardcoded stuff === |
| 26 | |
| 27 | There´s lots of unnecessary hardcoded elements with the Admin which makes it hard to customize. Some examples:[[BR]] |
| 28 | http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/widgets.py#L126 (hardcoded image)[[BR]] |
| 29 | http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/widgets.py#L95 (template/widget instead)[[BR]] |
| 30 | http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/options.py#L650 (move to template)[[BR]] |
| 31 | http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/widgets.py#L238 (hardcoded image, including width and height, this should go to CSS)[[BR]] |
| 32 | IMO, getting rid of almost all hardcoded elements is the base for a more extensible, customizable and easier to change/adapt interface (PK). |
| 33 | |