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 Schneider kirjoitti:
>
>
> On Jul 12, 2016 4:27 AM, "VilleP" > 
> wrote:
> >
> > Hi guys!
> >
> > I've got a little problem with my url "generating". Everytime I try to 
> run my testserver and move through pages, that I've linked there it goes 
> like this:
> >
> > http://testserver.local/home #(this is totally fine)
> > (click on another page)
> > http://testserver.local/home/page1
> > (click on another page besides home)
> > http://testserver.local/home/page1/page2
> > (if I click again to previous by clicking menu button it goes like this)
> > http://testserver.local/home/page1/page2/page1
> >
>
> This is happening because your site is generating links using a short 
> relative path (href='page1'). Are you generating URL paths using the Django 
> methods such as reverse() and {% url %}?
>
> > page1, etc. are examples here which helps me to present the problem.
> >
> > Any help for this one? I'll paste my urls.py and views.py below:
> >
> >
> > from django.conf.urls import url
> > from sivusto import views
> >
> > urlpatterns = [
> > url(r'^$', views.index, name='index'),
> > url(r'^tekninen.html/$', views.tekninen, name='tekninen'), #(this would 
> be page1)
> > url(r'^johdon_tyokalut.html/$', views.johdon_tyokalut, 
> name='johdon_tyokalut'), #(this would be page2)
> > ]
>
> Can you provide an example of a problematic {% url %} tag from your 
> template, and the generated HTML on the browser for that same anchor?
>
> Based on the urls.py files you posted, the behavior you describe shouldn't 
> be possible. Is this behavior seen using the dev server, or using a 
> production server like Apache?
>
> -James
>

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/a4c4b32e-1ba5-4885-b087-2a92b5faafdf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 offer me some enlightenment as to the best way to do 
this?

Many thanks in advance.

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/38f8b1b0-133d-4c32-8c09-a5fc334a9fe2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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/

Here's what my code to send email looks like:


from django.core.mail import EmailMessage, EmailMultiAlternatives
def send(to, subject, body="", cc=[], bcc=[], html_body=None):
    try:
    # Pulls implicitly from settings.py, but can each be
overridden here.
    #   EMAIL_HOST
    #   EMAIL_PORT
    #   EMAIL_HOST_USER
    #   EMAIL_HOST_PASSWORD
    #   EMAIL_USE_TLS
    #   DEFAULT_FROM_EMAIL
    if html_body:
    email_message = EmailMultiAlternatives()
    else:
    email_message = EmailMessage()
    email_message.to = to
    email_message.cc = cc
    email_message.bcc = bcc
    email_message.subject = subject
    email_message.body=body
    if html_body:
    email_message.attach_alternative(html_body, "text/html")
    email_message.send(fail_silently=False)
    success = True

    except smtplib.SMTPServerDisconnected as e:
    msg = u'Unable to connect to SMTP server ' +
settings.EMAIL_HOST
    msg += u' to send e-mail to ' + unicode(email_message.to)
    exception = e

    except smtplib.SMTPSenderRefused as e:
    msg = u'The SMTP server ' + settings.EMAIL_HOST
    msg += u' refused to send e-mail from ' + unicode(e.sender)
    msg += u' when asked to send e-mail to ' +
unicode(email_message.to)
    exception = e

    except smtplib.SMTPRecipientsRefused as e:
    msg = u'The SMTP server ' + settings.EMAIL_HOST
    msg += u' refused to send e-mail to recipients ' +
unicode(e.recipients)
    msg += u' when asked to send e-mail to ' +
unicode(email_message.to)
    exception = e

    except smtplib.SMTPDataError as e:
    msg = u'The SMTP server ' + settings.EMAIL_HOST
    msg += u' refused to accept the message data'
    msg += u' when asked to send e-mail to ' +
unicode(email_message.to)
    exception = e

    except smtplib.SMTPConnectError as e:
    msg = u'Could not establish a connection with the'
    msg += u' SMTP server ' + settings.EMAIL_HOST
    msg += u' to send e-mail to ' + unicode(email_message.to)
    exception = e

    except smtplib.SMTPHeloError as e:
    msg = u'The SMTP server ' + settings.EMAIL_HOST
    msg += u' refused our HELO message'
    msg += u' when sending e-mail to ' +
unicode(email_message.to)
    exception = e

    except smtplib.SMTPAuthenticationError as e:
    msg = u'Unable to authenticate with SMTP server ' +
settings.EMAIL_HOST
    msg += u' when sending e-mail to ' +
unicode(email_message.to)
    exception = e

    except smtplib.SMTPResponseException as e:
    msg = u'The SMTP server ' + settings.EMAIL_HOST
    msg += u' returned: (' + unicode(e.smtp_code) + u') ' +
unicode(e.smtp_error)
    msg += u' when sending e-mail to ' +
unicode(email_message.to)
    exception = e

    except smtplib.SMTPException as e:
    msg = u'Unable to send e-mail to ' +
unicode(email_message.to)
    exception = e

    except BaseException as e:
    msg = u'An unexpected error occurred '
    msg += u' when sending e-mail to ' +
unicode(email_message.to)
    msg += u' during step: "' + progress + u'"'
    exception = e

    finally:
    if not success:
    raise EmailException(msg, exception)

--Fred
  
  
  Fred Stluka -- mailto:f...@bristle.com --
  http://bristle.com/~fred/
  
  Bristle Software, Inc -- http://bristle.com -- Glad to be of
  service!
  
  Open Source: Without walls and fences, we need no Windows or
  Gates.
  
  

On 7/18/16 7:02 AM, 'davidt' via Django
  users wrote:


  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 offer me some enlightenment as to the best
way to do this?

Many thanks in advance.
  
  -- 
  You received this message because you are subscribed to the Google
  Groups "Django users" group

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/index.html or 
https://sendgrid.com/docs/API_Reference/Web_API/index.html

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9b85f186-55a8-427b-b8a9-ab206a5e9ab4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/7692852b-8ed8-420b-b8c8-5484b04d4fe3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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.Model):
name = models.CharField(max_length=32)

def get_absolute_url(self):
return reverse('app:item', kwargs={'pk':self.pk})


Also, I would suggest you to have a look at class based view,
especially those handling form [1]. That's unrelated to your problem
but might save you time in the future :)

[1] 
https://docs.djangoproject.com/en/1.9/topics/class-based-views/generic-editing/

2016-07-18 14:25 GMT+02:00 Mayur Pabari :
>
> Below is the code of views.py. I am getting error when calling
> HttpResponseRedirect in update and create method. So please let me know
> how can i solve this ?
>
> from django.shortcuts import render, get_object_or_404
> from django.http import HttpResponse, HttpResponseRedirect
>
> from .forms import PostForm
> from . models import Post
>
> def post_create(request): #create Method
> form = PostForm(request.POST or None)
> if form.is_valid():
> instance = form.save(commit=False)
> instance.save()
> return HttpResponseRedirect(instance.get_absolute_url())
>
> context = {
> "form" : form,
> }
> return render(request, "post_form.html", context)
> def post_list(request): #list method
> queryset = Post.objects.all()
> context = {
> "object_list": queryset,
> "title": "List"
> }
> return render(request, "index.html", context)
>
> def post_update(request, id=None): #update Method
> instance = get_object_or_404(Post, id=id)
> form = PostForm(request.POST or None, instance=instance)
> if form.is_valid():
> instance = form.save(commit=False)
> instance.save()
> return HttpResponseRedirect(instance.get_absolute_url()) #i am
> getting error here
>
> context = {
> "title": instance.title,
> "instance": instance,
> "form": form,
> }
> return render(request, "post_form.html", context)
>
> --
> 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 email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/5486d915-3589-43c8-8d39-943b299f1a20%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.



-- 

Cordialement, Coues Ludovic
+336 148 743 42

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAEuG%2BTb0Y551wmD3BswseYfWCmFNDmop-vSPZX87LiO95zYqEA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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/index.html or
> https://sendgrid.com/docs/API_Reference/Web_API/index.html
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Django users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/django-users/ZHXhRZUfiPA/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/9b85f186-55a8-427b-b8a9-ab206a5e9ab4%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALwQ%2B-ucUUwCumswEiPyoNYAaDWtss0Xo6w_MUdAAH_eeg6pCQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 workflow. 

Now it happens that if a user working on the inlines of an Order rapidly and 
*** frantically  (or I'd better say "Hysterically") clicks many times on 
the  "Save and continue editing" button the related instance is recorded more 
than once.
Therefore I would like to disable the "Save", "Save and continue editing", and 
"add another" buttons while saving inlines at the very beginning of the save 
function and re-enable them at the very end of it.

How can I do this?

=
models.py 
.
class Items(models.Model):
  code = models.CharField(primary_key=True,max_length=15,db_column='code')
  description = models.CharField(max_length=255, db_column='Description', 
db_index=True)
  category = models.IntegerField(choices=categoria, 
db_column='Category',default=2)
  
total_quantity_in_store=models.IntegerField(db_column='total_quantity_in_store',
 default=0)
  def __unicode__(self):
  return self.description

class Order(models.Model):
  id_order = models.IntegerField(primary_key=True,db_column='id_order')
  patient = models.ForeignKey(Patients, db_column='patient')
  def __unicode__(self):
  return u"Ord.%s per %s" % (self.id_order, self.paziente)


class OrderDetail(models.Model):
 id_order = models.ForeignKey(Order,db_column='id_order')
 item_code = models.ForeignKey(Items,verbose_name='Items')
 quantity = models.IntegerField(db_column='quantity',blank=True,default=0)
 def save(self):
# HERE I WOULD LIKE TO DISABLE/MAKE DISAPPEAR THE "Save", "Save and 
continue editing", and "add another" BUTTONS
...
super(OrderDetail,self).save()
...
# HERE I WOULD LIKE TO ENABLE/MAKE APPEAR AGAIN THE "Save", "Save and 
continue editing", and "add another" BUTTONS   
return
==
admin.py
..
class OrderDetailInline(admin.TabularInline):
  model=OrderDetail
  raw_id_fields = ['item_code',]
  fields=('item_code', 'quantity',)

class OrderOption(admin.ModelAdmin):
  readonly_fields = ['order_id', 'patient']
  list_display = ( 'patient','order_id')
  fields=( 'order_id', 'patient')
  inlines=[OrderDetailInline,]

admin.site.register(Order,OrderOption)

=

Ciao
Vittorio

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/E1F69844-31C3-4E92-AC46-ED5F453F776F%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4eebf530-6e63-414d-b165-51d898981ff3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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.
>
> --
> 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 email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4eebf530-6e63-414d-b165-51d898981ff3%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGnF%2BrCCwbS7mUXf77EarqULur3nuxmrJ07RL%3DcRsCZNwwtEYQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGnF%2BrBw%3D-OZsSFcqZysVGS1pt3Ay10mix_2g%2BkD-PdzOeL8bQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 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 email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAGnF%2BrBw%3D-OZsSFcqZysVGS1pt3Ay10mix_2g%2BkD-PdzOeL8bQ%40mail.gmail.com.
> For more options, visit https://groups.google.com/d/optout.



-- 

Cordialement, Coues Ludovic
+336 148 743 42

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAEuG%2BTbb0VOwiqt6M9GJCgMNijy%2Bqh09cWSLcPiKAdfy%3DkXDNw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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
> 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 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 email to django-users@googlegroups.com.
> > Visit this group at https://groups.google.com/group/django-users.
> > To view this discussion on the web visit
> >
> https://groups.google.com/d/msgid/django-users/CAGnF%2BrBw%3D-OZsSFcqZysVGS1pt3Ay10mix_2g%2BkD-PdzOeL8bQ%40mail.gmail.com
> .
> > For more options, visit https://groups.google.com/d/optout.
>
>
>
> --
>
> Cordialement, Coues Ludovic
> +336 148 743 42
>
> --
> 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 email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAEuG%2BTbb0VOwiqt6M9GJCgMNijy%2Bqh09cWSLcPiKAdfy%3DkXDNw%40mail.gmail.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGnF%2BrA%3DRY9TqMVtn6eBUhv_2ghQ8r4065BXHZbcxf4ZMeE6bw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 to put
celery between django and node.js to have a non-blocking interface on
the django side

2016-07-18 19:14 GMT+02:00 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
>> 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 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 email to django-users@googlegroups.com.
>> > Visit this group at https://groups.google.com/group/django-users.
>> > To view this discussion on the web visit
>> >
>> > https://groups.google.com/d/msgid/django-users/CAGnF%2BrBw%3D-OZsSFcqZysVGS1pt3Ay10mix_2g%2BkD-PdzOeL8bQ%40mail.gmail.com.
>> > For more options, visit https://groups.google.com/d/optout.
>>
>>
>>
>> --
>>
>> Cordialement, Coues Ludovic
>> +336 148 743 42
>>
>> --
>> 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 email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAEuG%2BTbb0VOwiqt6M9GJCgMNijy%2Bqh09cWSLcPiKAdfy%3DkXDNw%40mail.gmail.com.
>> For more options, visit https://groups.google.com/d/optout.
>
> --
> 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 email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAGnF%2BrA%3DRY9TqMVtn6eBUhv_2ghQ8r4065BXHZbcxf4ZMeE6bw%40mail.gmail.com.
>
> For more options, visit https://groups.google.com/d/optout.



-- 

Cordialement, Coues Ludovic
+336 148 743 42

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAEuG%2BTZmtE_5JdxVYoKnRo8G%3DQY1%2BYVkL7qhcsiGxCCcf_JQVA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[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/2016/jul/18/security-releases/

As a reminder, we ask that potential security issues be reported via 
private email to secur...@djangoproject.com and not via Django's Trac 
instance or the django-developers list. Please see 
https://www.djangoproject.com/security for further information.

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0e221d12-4d59-429d-ba36-80711fca156c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f20891cc-510a-435a-9e85-42cd564a9dbb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 speak in detail and share any and all information regarding these 
opportunities. 

 

This is a total of 15 exclusive openings for this team I can get anyone the 
job w/ the right skill set!

 

Please ask around as I will be more than happy to pay you a referral fee 
for your efforts. My direct dial is (646) 753-9211, and I can be reached on 
this email ID. (john.a.vite...@gmail.com)

 

See below to give you a good overview of this opportunity.


• They are building an incubator “startup type” team to 
re-engineer and streamline internal applications.

• I need top end python developers with Django UI and either 
web API or cloud experience.

• Basically I need full stack python developers but then they 
say full stack they mean developer and infra.

-- 
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 email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/7c63b063-50b0-4efa-aa43-70546fa4a684%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.