Django signals allow listeners to be registered for events within the framework. This allows decoupled handling of, for example, model deletions.
0
votes
1answer
25 views
django: connecting to existing signal fails
I started using django_openid_auth (https://launchpad.net/django-openid-auth) and it works just fine.
I manage to connect to my openid provider and get user authenticated. Thing is that in ...
0
votes
1answer
25 views
python django implementing subscribers
I have a very simple web application. A student comes in and he creates a note in one of the subjects. Each subject has number of subscribers. Similar to stackoverflow tags, once a tag has been added ...
0
votes
1answer
40 views
Compare values while saving upon a model in django?
this is my model
class Profile(models.Model):
activate = models.BooleanField(default=False)
Now i want to do is , whenever some one from admin panel makes it true , an email will be sent to ...
0
votes
1answer
37 views
Django Signals: How to signal for first entry in table
I am creating django applications(in django terminology) where 1st application inserts data in a table and 2nd application picks one item from table, processes it and finally remove from table. It ...
0
votes
1answer
35 views
Issue using fixtures in tests with Django DirtyFields
Is there a known issue when using fixtures in tests if you are implementing Django DirtyFields?
We use django_nose's NoseTestSuiteRunner with fixtures and coverage. I was going to try implementing ...
3
votes
1answer
171 views
Django Save Image on different model fields
I have a model called Picture . When an image is uploaded into this model , it will automatically be re-size before saving.
My main goal is to re-size the uploaded image into 2 separate images . So I ...
2
votes
2answers
44 views
How to check for a specific field change in a model?
I have my models.py :
class Hotel(models.Model):
name = models.CharField(max_length=20)
currency = models.ForeignKey(Currency)
class Currency(models.Mode):
code = ...
0
votes
2answers
33 views
writing django signal hook to check whether user already exists
We recently switched from one LDAP system to another. Unfortunately, not only the LDAP server changed but all usernames did too.
I managed to configure django_auth_ldap to deal with two LDAP servers, ...
0
votes
1answer
15 views
Update other fields during the save
I have declared a signal for the UserProfile model which updates some other fields. The stored data are coming from a web service.
post_save.connect(user_profile_update, sender=UserProfile)
in ...
0
votes
2answers
30 views
Django send signal sometime in the future
I have a model that takes an expires_at time field. In the sense, the user can set a time beyond which the entry is invalid. At that time, I need to do specific actions such as send email and/or ...
0
votes
1answer
42 views
Django receiver Column 'user_id' cannot be null
I'm using userena receiver but I'm getting the following error...
IntegrityError at /accounts/signup/
(1048, "Column 'user_id' cannot be null")
I'm assuming that I'm not accessing the user correctly ...
0
votes
1answer
17 views
post_save error Message' has no attribute
I'm trying to use signals post_save for the first time. I have read the documents, but still need some advice.
I'm trying to update my model field called 'charge'.
@receiver(post_save, ...
0
votes
1answer
24 views
To use signals or override model save method?
Simple use case:
After a user updates a record, I want to get the changed fields and save them in a history table. I'm using django-ditryfields to grab this history. So my thought process was to use ...
0
votes
1answer
55 views
Have loaddata ignore or disable post_save signals
Let's say that you want to setup a test environment for major changes to an application that you have created, and you want to make sure that those data existing in your system will easily load into ...
0
votes
0answers
12 views
Is there a way to identify if pre_delete signal was triggered for cascade delete?
I have a scenario in which I want to know if pre_delete signal for a Model BandMembers is called if single object is being deleted or multiple.
Consider this simple example:
class ...
0
votes
1answer
22 views
Having access to a model function on every request for a user
I have a model called Account, with has a model function (see code below). I would like to show in my template the users total on every page. The only way I can think of doing this in putting accounts ...
0
votes
1answer
32 views
Using signals concept to do events
This is i am doing to send mail once a record is updated in the database.I had defined the receivers in separate file called listeners.py to receive the signals.
signals.py
import django.dispatch
...
0
votes
2answers
70 views
Django using custom signals to send mail
In my sample, signal function was created in models.py.Instead of this,i think it is possible to do using custom signals concept.
my models.py for signals function is
class Book(models.Model):
...
0
votes
0answers
26 views
Use signal receivers to call Dajax functions
I have a page with tables which I want to update when users submit new data. Currently, I have it set up to call a Dajax function every two seconds, which works just fine but is not how I want it to ...
0
votes
2answers
34 views
Initializing after first superuser is created
I want to know if there are any specific signals sent when the first superuser is created. Am talking about when I run syncdb and am asked to create a super user. At that point I want to know if any ...
0
votes
2answers
86 views
Save the related objects before the actual object being edited on django admin
Is it possible to save the related objects before the actual object being edited on a django admin form?
For example:
in models.py
class Parent(model.Model):
pass
class Child(model.Model):
...
0
votes
2answers
60 views
Django database watchdog save signal outside django
I have the following problem:
I Am using a Django framework.
One of the parts in a system (non-django) writes to the database, in the same database that django is using.
I want to have a signal when ...
0
votes
1answer
60 views
Creating a profile model with both an InlineAdmin and a post_save signal in Django
I created a 'profile' model (with a 1-to-1 relationship to the User model) as described on Extending the existing user model. The profile model has an optional many-to-one relationship to another ...
0
votes
1answer
107 views
Warehousing records from a flat item table: Django Signals or PostgreSQL Triggers?
I have a Django website with a PostgreSQL database. There is a Django app and model for a 'flat' item table with many records being inserted regularly, up to millions of inserts per month. I would ...
0
votes
0answers
105 views
django 1.5: using condition on signal.post_save()
i want to create an activation code for a user, only if it matches a certain criteria on my user model. here is my signal that i am sending
def create_activation_code(sender, instance, created, ...
0
votes
0answers
22 views
Use a many2many inline to update a remote table
Using django 1.4 with the built in admin, I'd like to update a second table when an inline m2m is saved when a certain field is not null/blank. I'm using a signal at the moment on the through table. ...
1
vote
0answers
58 views
Django Signals to update a different model
Say I have two models:
class Product(models.Model):
product = model.CharField()
quantity = model.IntegerField()
class sale(models.Model)
product = models.ManyToManyField(Product)
...
0
votes
0answers
70 views
Creating an Activity Feed Using Django Signals and Tastypie
Is it possible to build and render a django activity feed using Tastypie and Django Signals? I already have my commenting, liking and following resources set up. But I don't know how I can create an ...
2
votes
1answer
170 views
Django Signal vs Python Threading
Its hard to explain what I am trying to achieve. Please have the patience to go through this. And let me know if you have any questions.
Say I have a Django project with two applications which I ...
0
votes
1answer
296 views
Using Pre_delete Signal in django
In my app I want to keep a track of all the questions that are being deleted. And so I have created a class(table) as such in my models file.
class Deleted(models.Model):
question = ...
0
votes
1answer
82 views
Access HttpRequest object in request_finished callback in Django
I am trying to call a function after a particular view is finished sending the response object to the user - so the user does not have to wait for the function to be executed.
I am trying to use ...
1
vote
1answer
99 views
Django form save with post_save signal causing conflict
I have a Physical_therapy_order model and an Event model (an event has foreignkey to Physical_therapy_order). I have a view which allows a user to create a new event. It also has a form with 3 fields ...
1
vote
1answer
53 views
How to get signal sender type when using multi authorization providers?
In my app I am using standard auth module and social auth plugin.
I want to detect if user is registering via oauth or standard method
I have function registered to post_save signal:
def ...
2
votes
1answer
49 views
May an instance be committed if an exception occurs in the post_save handler?
I have a post_save handler that inserts additional records into the database referring to the instance that was just created or updated. However, an error (perhaps a constraint violation) may occur ...
3
votes
2answers
224 views
How do I mock a django signal handler?
I have a signal_handler connected through a decorator, something like this very simple one:
@receiver(post_save, sender=User,
dispatch_uid='myfile.signal_handler_post_save_user')
def ...
0
votes
2answers
338 views
Django post_save() signal implementation
I have a question about django.
I have ManyToMany Models here
class Product(models.Model):
name = models.CharField(max_length=255)
price = models.DecimalField(default=0.0, max_digits=9, ...
0
votes
2answers
442 views
Django - Check diference between old and new value when overriding save method
thanks for your time.
I'm on Django 1.4, and I have the following code: Its the overriden save method for my Quest model.
@commit_on_success
def save(self, *args, **kwargs):
from ...
1
vote
1answer
141 views
django m2m_changed signal with custom through model
I am trying to use the m2m_changed signal to trigger some actions in my application
. However, the printout of signaltest() indicates that I am only signalled on pre_clear and post_clear actions. My ...
2
votes
1answer
432 views
How can I have a Django signal call a model method?
Maybe it's just late, but I cannot figure out why this isn't working. When I have a post_save signal call a generic function, it works, but when I have a post_save signal call a method from a model, ...
1
vote
0answers
107 views
How to create callback URL in Django PuSH
I am using Django-PuSH (PubSubHubPub) for my Blogger's Blog.
Now, I read the documentation and could make simple code. However, the document never mentioned anywhere to enter a callback URL!
Here is ...
1
vote
1answer
66 views
Signaling on related model when deleting ForeignKey in django
In django, is there any way to be signalised about a change in the related model when the foreignKey is set with on_delete=models.SET_NULL?
In a first scenario with the typical situation:
class ...
0
votes
1answer
58 views
Using m2m_changed signal
first some information about the app: I want to be able to upload a pdf file, that pdf file will be converted to images (for every pdf page one image). These images will then be shown on the website ...
1
vote
2answers
57 views
Is it possible to set the implicit OneToOne key directly when using multi table inheritance in Django?
I'm trying to extend a library model through multi-table inheritance and this is what I ended up with:
class CompetitionMedia(InstagramMedia):
visible = models.BooleanField(default=True)
...
0
votes
1answer
65 views
m2m_changed not trigger for custom “through” model
I have a custom through intermediary model for ManyToManyField between Wishlist and Product:
class Product(models.Model):
name = models.CharField(max_length=255)
created = ...
0
votes
0answers
36 views
Determine the view which triggered the django signal?
I'm using django-signals to email the confirmation link of those who have signed up in my site. The django view it uses is named 'signup'. So at the bottom of my models.py:
...
0
votes
1answer
53 views
Can't refer to models in callback function registered to user_logged_in signal in Django
I have a requirement to write a DB row when a user logs in. The following code is in models.py (at end of file, after model definitions);
models.py
from django.contrib.auth.signals import ...
2
votes
1answer
106 views
Django model validation on related fields
When is the appropriate time to do validation on related fields in a model?
For example if I have a class Video that has a ManyToMany relationship with a class Playlist, when the Video is changed to ...
1
vote
1answer
49 views
Email notifications for follow-up comments in Django's comments app
I'm using the stock Django comments framework. What's the best way to add a checkbox to the comment form to allow commenters to be notified of future comments?
2
votes
2answers
177 views
A signal m2m_changed and bug with post_remove
I need to detect a post_remove signal, so I have written :
def handler1(sender, instance, action, reverse, model, pk_set, **kwargs):
if (action == 'post_remove'):
test1() # not declared but make ...
0
votes
1answer
152 views
Django - many to many with post_save gridlock
I want to send out an email when a model instance is saved. To do this I listen out for the post_save signal:
#models.py
@receiver(post_save, sender=MyModel, dispatch_uid="something")
def ...