Opened 15 years ago

Closed 13 years ago

Last modified 13 years ago

#10917 closed New feature (fixed)

admin/base.html should contain messages block

Reported by: anonymous Owned by: nobody
Component: contrib.admin Version:
Severity: Normal Keywords: admin customization block messages
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: yes
Easy pickings: no UI/UX: no

Description

The admin/base.html template should surround messages with a block to allow customization in base_site.html.

{% block messages %}
{% if messages %}
<ul class="messagelist">{% for message in messages %}<li>{{ message }}</li>{% endfor %}</ul>
{% endif %}
{% endblock %}

Attachments (2)

base.html.diff (876 bytes ) - added by Philomat 14 years ago.
svn diff
10917.admin-messages-block.diff (881 bytes ) - added by Julien Phalip 13 years ago.

Download all attachments as: .zip

Change History (12)

comment:1 by Thejaswi Puthraya, 15 years ago

Component: Uncategorizeddjango.contrib.admin
Needs tests: set

comment:2 by Luke Plant, 15 years ago

Needs tests: unset
Patch needs improvement: set

Patch needs to be "unified" style. Using svn diff from base django directory is the easiest.

by Philomat, 14 years ago

Attachment: base.html.diff added

svn diff

comment:3 by Philomat, 14 years ago

Has patch: set

I second that. Really useful for integrating apps like django_notify

comment:4 by anonymous, 14 years ago

Patch needs improvement: unset

comment:5 by Russell Keith-Magee, 14 years ago

Triage Stage: UnreviewedAccepted

comment:6 by Julien Phalip, 13 years ago

milestone: 1.4
Patch needs improvement: set

The patch looks good, though it doesn't apply any more. This new feature comes too late for 1.3 but I'd like to see it in 1.4.

comment:7 by Chris Beaven, 13 years ago

Severity: Normal
Type: New feature
Version: 1.1-beta-1

Agreed.

by Julien Phalip, 13 years ago

comment:8 by Julien Phalip, 13 years ago

Triage Stage: AcceptedReady for checkin

Updated the patch so it applies to current trunk. I think it's ready to go.

comment:9 by Luke Plant, 13 years ago

Resolution: fixed
Status: newclosed

In [16046]:

Fixed #10917 - admin/base.html should contain messages block

Thanks to Philomat/julien for the patch

comment:10 by Jacob, 13 years ago

milestone: 1.4

Milestone 1.4 deleted

Note: See TracTickets for help on using tickets.
Back to Top