querying multiselectcheckbox

2018-01-31 Thread Tech Today
# this is my model from django.db import models from multiselectfield import MultiSelectField TRACK_EVENTS_CHOICES = ( ('100M', '100 Meter'), ('200M', '200 Meter'), ('400M', '400 Meter'), ('800M', '800 Meter'), ('1500M', '1500 Meter'), ('5000M', '5000 Meter'), ) clas

Re: javascript transpilers

2018-01-31 Thread Mike Dewhirst
On 1/02/2018 9:50 AM, Matthew Pava wrote: I just want to point out something called WebAssembly. It's supported across all modern browsers. Presumably, you can write a program in Python, convert it to WebAssembly, and it will run in your browser. I haven't worked with it myself, but I am ke

Re: Django-hotsauce: Current status and roadmap

2018-01-31 Thread Etienne Robillard
Hi, Any ideas of good python library for benchmarking standalone Django 2.0 http server? Thanks in advance, Etienne Le 2018-01-31 à 07:38, Etienne Robillard a écrit : Hi Avraham, Le 2018-01-31 à 06:35, Avraham Serour a écrit : Why do you call it microframework? Because it still depen

Django Login Popup forms.

2018-01-31 Thread Udit Vashisht
Hi, I want to create a popup form for login. I have implemented the same for signup by creating jsonresponse from signup view. But i could not do the same for the login form. Can anyone help. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

RE: javascript transpilers

2018-01-31 Thread Matthew Pava
I just want to point out something called WebAssembly. It's supported across all modern browsers. Presumably, you can write a program in Python, convert it to WebAssembly, and it will run in your browser. I haven't worked with it myself, but I am keeping my eye on it because I would like to t

Re: javascript transpilers

2018-01-31 Thread Mike Dewhirst
On 30/01/2018 6:33 PM, Andréas Kühne wrote: 2018-01-30 5:18 GMT+01:00 Mike Dewhirst >: On 29/01/2018 9:03 PM, Nick Sarbicki wrote: Going SPA when you don't know JS is very much a baptism of fire. Angular is personally my favourite too and essen

Django memcached sessions engine over SSL

2018-01-31 Thread massimo
Hi guys, It is possible to use the django.core.cache.backends.memcached.MemcachedCache backend for caching and use it over SSL/TLS ? I'm using Openstack Horizon, and i want to encrypt the connection between the horizon server and the memcached host. Thanks !! -- You received this messag

Re: wsgi error

2018-01-31 Thread tango ward
Hi, thanks for the response. I was able to solved it. Turns out that my should be in the same directory with manage.py. On Tue, Jan 30, 2018 at 2:01 PM, Matemática A3K wrote: > > > On Sat, Jan 27, 2018 at 12:05 AM, tango ward > wrote: > >> Hi Team, >> >> Not sure if this issue covered here but

Re: django-vue

2018-01-31 Thread carlos
https://github.com/michaelbukachi/django-vuejs-tutorial/wiki/Django-Vue.js-Integration-Tutorial https://github.com/NdagiStanley/vue-django On Wed, Jan 31, 2018 at 4:19 AM, Mohammad ariyan bin layek < ariyan@gmail.com> wrote: > Hii guys is there any good resouce to integrate django with vue ?

Simple table construct?

2018-01-31 Thread MikeKJ
This should be real simple but it has me scratching where to start Distance/Time between 2 place like Distance A B C A 05 10 B 50 5 C 10 5

Re: Pivot Table in django

2018-01-31 Thread hunter.cur...@gmail.com
You could use this library: https://github.com/martsberger/django-pivot On Wednesday, January 31, 2018 at 4:55:48 AM UTC-7, harshvardhan singh wrote: > > Can anyone give me the guidance for "How to build a pivot table in Django"? > I want to implement something like this: > https://pivottable.j

Re: A question of signals and ATOMIC_REQUESTS

2018-01-31 Thread Me Sulphur
Thanks! For the response. In that scenario, what would explain old_copy (in the code example) having updated values and not the stale ones from the DB. Postgres Doc Reference: https://www.postgresql.org/docs/current/static/sql-set-transaction.html On Wednesday, 31 January 2018 16:41:16 UTC+

Re: Django-hotsauce: Current status and roadmap

2018-01-31 Thread Etienne Robillard
Hi Avraham, Le 2018-01-31 à 06:35, Avraham Serour a écrit : Why do you call it microframework? Because it still depends mostly on the core Django API. You should prove it is high performance, benchmark, measure, compare and show some cool graphs All right. I'm planning to benchmark the fo

Re: how to return clickable link in django 2.0 admin.py file

2018-01-31 Thread Andréas Kühne
Hi, Your question is a bit vague - however, if I do my own interpretation of it, you want to return a link from a custom property in django admin? You can do that specifically by adding the string to a format_html call. See here : https://docs.djangoproject.com/en/2.0/ref/contrib/admin/#django.co

django-vue

2018-01-31 Thread Mohammad ariyan bin layek
Hii guys is there any good resouce to integrate django with vue ? -- 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 p

Pivot Table in django

2018-01-31 Thread harshvardhan singh
Can anyone give me the guidance for "How to build a pivot table in Django"? I want to implement something like this: https://pivottable.js.org/examples/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop rece

Re: Django-hotsauce: Current status and roadmap

2018-01-31 Thread Avraham Serour
Why do you call it microframework? You should prove it is high performance, benchmark, measure, compare and show some cool graphs I already have a Django project, is it a drop in replacement? My project uses python 3.6 while you only have experimental support for 3.5. I'm not going back, you shou

Re: A question of signals and ATOMIC_REQUESTS

2018-01-31 Thread Jason
It seems that your inference is correct https://stackoverflow.com/a/41522066/214892 On Wednesday, January 31, 2018 at 12:54:29 AM UTC-5, Me Sulphur wrote: > > When ATOMIC_REQUESTS=True is set, are ORM signals - post_save and > pre_save - also executed within the transaction? Per my inference, t

Django-hotsauce: Current status and roadmap

2018-01-31 Thread Etienne Robillard
Hi everyone, This is a quick post to present the current state of development in Django-hotsauce, a high-performance and scalable WSGI microframework on top of Django and others. Django-hotsauce has now reached the 0.9 milestone. New major features now supported includes: * uWSGI support