It’s often desired to quickly export data in a generic method that takes little coding. There are already some solutions for this. I didn’t like any however as they ignore many to many fields. One could argue a more robust system might be needed when handling more complex reports with gui sql query builders and such. Screw… Continue reading Spreadsheet reporting in Django
Tag: hack
Django Hack: adding extra data to admin interface
A common need I have for Django’s admin interface is to show a little more data for convenience right on the edit page. For example showing a link to a foreign key’s edit page right there. The way I do this is by setting the help_text field in the render_change_form function. I create a new function in… Continue reading Django Hack: adding extra data to admin interface