Re: django_bootstrap_calendar and admin backend

2016-07-20 Thread ludovic coues
it shouldn't be too hard to port it to python3. The module is mainly javascript, not python. Once the app can return json, it should work fine. 2016-07-20 20:40 GMT+02:00 Cronos Cto : > That explains alot of the issues I am having. Since it is a compatibility > issue, I am

Re: Django simple Captacha

2016-07-20 Thread Jeff Willette
I wrote a simple app to use googles recaptcha, you can read about how to install it here... http://jrwillette.com/post/how-to-use-django-g-recaptcha/ On Tuesday, July 19, 2016 at 11:54:32 PM UTC+9, Ajay Kumar wrote: > > hi Guys > > I tried django-simple-captcha on refering >

Re: django_bootstrap_calendar and admin backend

2016-07-20 Thread Cronos Cto
That explains alot of the issues I am having. Since it is a compatibility issue, I am guessing there is no way to make it work right? -- 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

Re: Is it possible to share a DB between Django and another application

2016-07-20 Thread Tim Graham
Yes, databases can accept connections from different applications. On Wednesday, July 20, 2016 at 11:31:48 AM UTC-4, Albert180 wrote: > > Hello I wanted to know if it's possible to share a Database between a > Django App ( The WebApp) and another external App which processes the Data ? > --

Re: Running Django tests for postgres_tests

2016-07-20 Thread Tim Graham
You need to use a custom settings module that uses the postgresql database backend. https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/#using-another-settings-module On Tuesday, July 19, 2016 at 11:37:35 PM UTC-4, premdjango wrote: > > I'm trying to run django

Is it possible to share a DB between Django and another application

2016-07-20 Thread Albert180
Hello I wanted to know if it's possible to share a Database between a Django App ( The WebApp) and another external App which processes the Data ? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Potential Contract to Hire Opportunity with our Direct Customer in Santa Clara CA [Fullstack Python Developer (Python / Django]

2016-07-20 Thread venkat . dhanikonda
Hi All, We have an Potential Contract to Hire opportunity for an *FULL STACK PYTHON DJANGO DEVELOPER* for our esteemed client in Santa Clara CA. Anyone interested, Please respond with their updated profiles to *venkat.dhaniko...@accionlabs.com* The position requires high-end engineering

Re: Real-Time Data Streaming

2016-07-20 Thread Derek
You may not actually need Django in this mix - e.g. http://xingwu.me/2014/10/19/Real-time-Web-Dashboard-Using-Socket-io-and-Highcharts/ On Monday, 18 July 2016 21:49:48 UTC+2, pvmer...@gmail.com wrote: > > Hello Everyone, > >I am working on a project where I want to display/plot graphs in

Django admin raises CSRF verification failed when changing from DEBUG True - > False

2016-07-20 Thread Muhammed Riyas
Hi All, I am having a difficulty with my Django site. In which I was running smoothly in dubug mode(DEBUG = True). While changing it to DEBUG = False (Also set ALLOWED_HOSTS = ['*']) , it raises error when logging in to admin " Forbidden (403) CSRF verification failed. Request aborted. More

Re: django_bootstrap_calendar and admin backend

2016-07-20 Thread ludovic coues
You might have noticed, the calendar view is a generic template view. It only display an html page. All the work is done with js. If everything work fine, it fetch the list of even for the period with ajax and add the event in the calendar. /calendar/json should return the list of event. As you

Re: Getting an error when I try to make an html page on django

2016-07-20 Thread ludovic coues
Like it have been said, it look like there is no object with id 2. If you want more details, you'll need to share the content of your view function. 2016-07-19 20:21 GMT+02:00 Sergiy Khohlov : > Looks like you have deleted artist with Id#2. > > > 19 лип. 2016 18:21 "Jose"

Re: For loop did not working ...

2016-07-20 Thread Asad ur Rehman
def campaign_list(request): """List all campaigns for the logged in user **Attributes**: * ``template`` - dialer_campaign/campaign/list.html **Logic Description**: * List all campaigns belonging to the logged in user """ form =

Re: For loop did not working ...

2016-07-20 Thread Mandeep Tondak
use custom template tag / or use class function in html:- use {{ id|pending }} pending is your custom template tag _ Class Abc(): pending = model() def pendinf(self): return self.pending Thank Mandeep On Wed, Jul 20, 2016 at 4:25 PM, Asad ur

Re: For loop did not working ...

2016-07-20 Thread Asad ur Rehman
No module name urls error is showing. -- 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 email to django-users+unsubscr...@googlegroups.com. To post to this group, send

Re: For loop did not working ...

2016-07-20 Thread Mandeep Tondak
Hey Id = [2,3,4,5,6,7,8] for w in Id: A = w Pending = pending(A) indent error. i hope. On Wed, Jul 20, 2016 at 4:11 PM, Asad ur Rehman wrote: > In image tou can see *Pending* Box. i want to generate loop and want to > get result

For loop did not working ...

2016-07-20 Thread Asad ur Rehman
In image tou can see *Pending* Box. i want to generate loop and want to get result against values in loop.in image 668 is the value of first Column.i want to give different values to column by loop Pending = pending(8) pending(8) give first column result that is 668. Id =

Re: Django simple Captacha

2016-07-20 Thread ludovic coues
This kind of captcha is easier for bot than it is for human. This one is especially weak. Single font, Single color for the text. And the more noise you add on the text, the harder it will be for human. https://github.com/ptigas/simple-captcha-solver is a basic tool for solving these. I strongly