You'll want to look into the save and delete hooks functionality here:
http://www.djangoproject.com/documentation/models/save_delete_hooks/
What it would look like is add to Publications:
def save(self):
super(Publications, self).save() # Call the "real" save() method
customer_list
I have two models, Subscriber, which has a front-end userface where
people can sign up for a newsletter and Publication, which has an admin
interface for writing the newsletters.
What I want to do is to have the ability to fetch the rows in
Subscriber and use these as the datatuple for send_mass_
2 matches
Mail list logo