﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32109	Cannot add content to admin sidebar without breaking layout	Ben Davis	nobody	"If I want to add content to the sidebar on the admin index page, I would normally override admin/index.html like so:

{{{
{% extends ""admin/index.html"" %}

{% block sidebar %}
  <p>Other stuff</p>
  {{ block.super }}
{% endblock %}
}}}

However, using `{{block.super}}` breaks layout because it contains `<div id=""content-related"">`, which is floated right to achieve the sidebar look. Adding any content before this will shift the sidebar to the bottom of the page.

Ideally, there should be another block inside `<div id=""content-related"">`, possibly called `{% block sidebar_content %}`, so that template authors can add content to the sidebar.
"	Bug	new	contrib.admin	3.1	Normal		admin sidebar template		Unreviewed	0	0	0	0	1	0
