Re: Django admin add related object doesn't open popup window?

2015-11-22 Thread Jorge Fernandez-de-Cossio-Diaz
I wasn't able to produce a minimal example of what was going on, but it is fixed now. Essentially, I did the following: 1. Upgraded to Django 1.8.6 . 2. Ran python manage.py collectstatic (as suggested in https://community.webfaction.com/questions/18544/there-is-not-popup-window-for

Re: Django admin add related object doesn't open popup window?

2015-11-22 Thread Jorge Fernandez-de-Cossio-Diaz
*UPDATE:* The admin popups work fine with `manage.py runserver`. The are broken only in the deployed project with apache2. Note that I did not change any setting between both deployments. I hope this narrows it down. -- You received this message because you are subscribed to the Google Groups

Re: Django admin add related object doesn't open popup window?

2015-11-20 Thread Jorge Fernandez-de-Cossio-Diaz
Is there another test I can do? On Thursday, November 19, 2015 at 11:48:41 AM UTC-5, Jorge Fernandez-de-Cossio-Diaz wrote: > > I'm trying to isolate a small example of the error, but I still haven't > quite diagnosed the problem. I appreciate your help. This what I get in the > "Console" tab: >

Re: Django admin add related object doesn't open popup window?

2015-11-19 Thread Jorge Fernandez-de-Cossio-Diaz
I'm trying to isolate a small example of the error, but I still haven't quite diagnosed the problem. I appreciate your help. This what I get in the "Console" tab: GET http://192.168.101.10:66/it_meeting/admin/it_meeting_profiles/institute/126/ [HTTP/1.1 200 OK 771ms] GET http://192.168.101.1

Re: Django admin add related object doesn't open popup window?

2015-11-19 Thread Tim Graham
Yes, it would be in the "Console" tab of that window. You need to open console using F12 first, then trigger the action. If you can create a minimal project that reproduces the error, then other people can try to reproduce it as well. On Thursday, November 19, 2015 at 8:32:32 AM UTC-5, Jorge F

Re: Django admin add related object doesn't open popup window?

2015-11-19 Thread Jorge Fernandez-de-Cossio-Diaz
I pressed F12 on Firefox, and played around to see if I could find anything. But I didn't see anything that looked like an error. But I'm not sure what I am looking for. What else can I do? On Tuesday, October 27, 2015 at 11:32:33 AM UTC-4, Tim Graham wrote: > > Please check the JavaScript cons

Re: Django admin add related object doesn't open popup window?

2015-10-27 Thread Tim Graham
Please check the JavaScript console in your browser to see if there are any errors. On Tuesday, October 27, 2015 at 11:18:18 AM UTC-4, j.coss...@gmail.com wrote: > > Thanks, I succesfully disabled the add related button, as a temporary > patch. > > Any ideas of why the pop-up isn't working? >

Re: Django admin add related object doesn't open popup window?

2015-10-27 Thread j . cossio . diaz
Thanks, I succesfully disabled the add related button, as a temporary patch. Any ideas of why the pop-up isn't working? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an em

Re: Django admin add related object doesn't open popup window?

2015-10-27 Thread j . cossio . diaz
Thanks, I succesfully disabled the add button, as a temporary patch. Any ideas of why the popup isn't working? On Saturday, October 24, 2015 at 2:57:23 AM UTC-4, Derek wrote: > > Disable the popup ... a suggestion was made in > https://code.djangoproject.com/ticket/9071 which is: > > class Pro

Re: Django admin add related object doesn't open popup window?

2015-10-23 Thread Derek
Disable the popup ... a suggestion was made in https://code.djangoproject.com/ticket/9071 which is: class ProductAdmin(ModelAdmin): def get_form(self, request, obj=None, **kwargs): """ Don't allow adding new Product Categories """ form = super(ProductAdmin, s

Django admin add related object doesn't open popup window?

2015-10-22 Thread j . cossio . diaz
I already posted this question on Stackoverflow (http://stackoverflow.com/q/33189728/855050), but haven't received any answers, just a comment by another user with the same issue. I am posting here for added visibility. I think this is a bug in Django v1.8. I'll copy the question's text here