Django Developers Wanted (Jersey City, NJ)

2016-07-18 Thread John Vitello
My name is John Vitello and I have exclusive opportunities for Django developers in Jersey City, NJ. I am asking for anyone who knows someone that might be interested to pass around my contract information. Please let me know if you or anyone you know would be interested. I am happy to sp

Real-Time Data Streaming

2016-07-18 Thread pvmerisier
Hello Everyone, I am working on a project where I want to display/plot graphs in real-time using Django, nodejs, Socket.io, Redis. Can someone please post a tutorial on real-time application with Django? Regards, PM -- You received this message because you are subscribed to the Google Gr

[ANNOUNCE] Django security releases issued: 1.10 release candidate 1, 1.9.8, and 1.8.14

2016-07-18 Thread Tim Graham
Today the Django team issued 1.10 release candidate 1, 1.9.8, and 1.8.14 as part of our security process. This releases address a security issue, and we encourage all users to upgrade as soon as possible. Details are available on the Django project weblog: https://www.djangoproject.com/weblog/2

Re: Django with node js

2016-07-18 Thread ludovic coues
for that job, I would use two interface on your node.js app, one public offering the socker.io connection, one local to the server listening for event from django. The js on the webpage connect to the public interface of the node.js app. The local interface don't need socket.io but you might want

Re: Django with node js

2016-07-18 Thread Arindam sarkar
I want node server to provide notifications for django request.user ... means node server would updated notifications in real time using socket.io for the logged in user On Jul 18, 2016 10:39 PM, "ludovic coues" wrote: > It depends on how django and node JS interact together, what they are > use

Re: Django with node js

2016-07-18 Thread ludovic coues
It depends on how django and node JS interact together, what they are used for, etc... 2016-07-18 18:58 GMT+02:00 Arindam sarkar : > I have a situation where I want to use django with node JS my problem is how > do I share user session data among django and notes server? > > -- > You received this

Django with node js

2016-07-18 Thread Arindam sarkar
I have a situation where I want to use django with node JS my problem is how do I share user session data among django and notes server? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails fro

Re: How to see error in django coding while i am using it through server/web ?

2016-07-18 Thread Arindam sarkar
Please add your error log . Is your project in production server? Add your server details. On Jul 18, 2016 10:16 PM, "Asad ur Rehman" wrote: > Hello ! i am using django. when i tested it always gives Urls error > instead of correct error .. How can i get correct error instead of Urls > error.

How to see error in django coding while i am using it through server/web ?

2016-07-18 Thread Asad ur Rehman
Hello ! i am using django. when i tested it always gives Urls error instead of correct error .. How can i get correct error instead of Urls error. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop recei

Disabling the "Save", "Save and continue editing", and "add another" buttons while saving inlines

2016-07-18 Thread Victor
My app (FreeBSD, Django 1.9.4, totally developped using the Admin Site) uses, among othe things, the model "Order" and "OrderDetail" as its inline (see below a simplified version). The "OrderDetail" model overrides the default save by means of a somewhat elaborate save function with a long work

Re: Email List

2016-07-18 Thread 'David Turner' via Django users
Hello Thanks for this. Would then the suggested route be to export my email list via an admin action and use this list via Sendmail? On 18 July 2016 at 15:11, Shem Nashon wrote: > Integrating email to django is a good but complex feature, My advice if > you want your emails in the inbox and no

Re: AttributeError: 'Post' object has no attribute 'get_absolute_url'

2016-07-18 Thread ludovic coues
The code of your model would be more interesting. According to the error, Post have no method get_absolute_url. That method isn't provided by models.Model, you have to write it. A way to do it is like that: from django.db import models from django.urls import reverse class Item(models

Re: admin css not working

2016-07-18 Thread Shem Nashon
TRy to be a bit clear, does CSS for your own static files load, have you set up or deleted STATIC_URL setting or static_root -- 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

Re: Email List

2016-07-18 Thread Shem Nashon
Integrating email to django is a good but complex feature, My advice if you want your emails in the inbox and not spam box of your subscribers is to user sendgrid email gateway, they have a python sdk as well as a REST api that takes json, see https://sendgrid.com/docs/API_Reference/SMTP_API/i

Re: Email List

2016-07-18 Thread Fred Stluka
David, There may be a package that does it all for you.  But if not, you can create a model that stores email addresses and send to those addresses via the Django mail package.  See docs at: - https://docs.djangoproject.com/en/dev/topics/email/

Email List

2016-07-18 Thread 'davidt' via Django users
I have a model that includes an option to subscibe to an email list. However, being somewhat new to Django I am assure how to create a bulk email list form this to send to the appropriate people. I have read various documents on this and have ended up somewhat confused. Could someone please off

Re: Url problem

2016-07-18 Thread VilleP
Thanks James for your quick answer, the problem occurred on dev server as I haven't deployed the site yet. But I figured out how to fix this, which was suitable for everybody. Just used multiple apps, instead of one. Thanks a lot :) -Ville tiistai 12. heinäkuuta 2016 16.19.12 UTC+3 James Schne