Has anyone got or know if a printer friendly css file is available for the Django Admin site?
A:
If you want to add in a print CSS stylesheet for the admin, add this to your admin/base_site.html
template:
{% block extrastyle %}
{{block.super}}
<link rel="stylesheet" href="/path/to/your/print.css" type="text/css" media="print" charset="utf-8">
{% endblock %}
stevejalim
2010-10-29 17:15:46