Skip to content

Instantly share code, notes, and snippets.

@hughsaunders
hughsaunders / base_site.html
Created June 28, 2011 17:13
Django Admin Template Override for adding edit popups to foreign key fields.
{%extends "admin/base.html" %}
{% block extrahead %}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('.add-another').each(function(i,o){
select_obj=$(o).parent().find('select')[0];
item_id=select_obj.options[select_obj.selectedIndex].value;