Customizable Invoice

2018-02-01 Thread Rakhee Menon
Hi All, I want to create a customized invoice format wherein the user can drag and drop the fields ,add columns delete columns save it and print the invoice ie I want to create a backend solution for storing the information about the invoices once any changes are done in the invoice format. For

Re: Django

2018-02-01 Thread carlos
path is call from django.urls https://github.com/django/django/blob/master/django/urls/conf.py you need use Django 2.0.x and python3 for work path Cheers On Thu, Feb 1, 2018 at 7:09 PM, Jung Hoon Park wrote: > Hi Rocha, > There is "from django.urls import path" statement

Re: Django

2018-02-01 Thread Jung Hoon Park
Hi Rocha, There is "from django.urls import path" statement on the top. Does it mean that path function is defined somewhere, not in this urls.py file? 2018년 2월 2일 금요일 오전 7시 52분 15초 UTC+9, sacrac 님의 말: > > To create a URLconf in the polls directory, create a file called urls.py. > Your app

Re: javascript transpilers

2018-02-01 Thread Mike Dewhirst
On 2/02/2018 12:54 AM, Jason wrote: https://caniuse.com/#feat=wasm  IIRC wasm is not polyfillable or transpilable, so if you're targeting users on any of those red cells, then wasm is not for you. Agreed. I think it is interesting anyway but I already decided it is not within my event

Re: Django

2018-02-01 Thread carlos
To create a URLconf in the polls directory, create a file called urls.py. Your app directory should now look like: On Wed, Jan 31, 2018 at 8:42 PM, Jung Hoon Park wrote: > Hello, I am studying Django for my new project. > I am confronting very basic problem. > In Tutorial

Re: Gttyyy

2018-02-01 Thread Harish Soni
Hii On 01-Feb-2018 10:46 PM, "Stephanie Torres" wrote: > Hy > > -- > 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

Newbie - Microservice in Django - Best place to start learning

2018-02-01 Thread pratibha sharma
Hi, I have created 2 example websites in Django i.e. Voting and event booking systems. I want to learn to create microservice in Django. I took below example for it. Service will 1. take data from UI (it will send it in JSON format), 2. store data in DB(MySQL) 3. Send Data to a device (in

Gttyyy

2018-02-01 Thread Stephanie Torres
Hy -- 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

Re: Bokeh Server via Django Tutorial

2018-02-01 Thread Saba Arife Bozpolat
Is there a youtube video lecture series or any other lecture series to follow? On Wednesday, November 8, 2017 at 8:11:54 PM UTC+3, Jonathan Bennett wrote: > > I created a tutorial that demonstrates how to create and host a Django > Website that serves interactive Bokeh Server plots. > > The

Django

2018-02-01 Thread Jung Hoon Park
Hello, I am studying Django for my new project. I am confronting very basic problem. In Tutorial Part1. Request and Response, Django Documentation, following sorce code is there. But I cannot find path function in "~/django.urls" directory. Can a function be imported which has no defintion in

Re: Simple table construct?

2018-02-01 Thread Andy
You could use Djangos geo features to calculate distances. https://docs.djangoproject.com/en/2.0/ref/contrib/gis/ Am Mittwoch, 31. Januar 2018 15:40:41 UTC+1 schrieb MikeKJ: > > This should be real simple but it has me scratching where to start > > Distance/Time between 2 place like > > Distance

Re: javascript transpilers

2018-02-01 Thread Jason
https://caniuse.com/#feat=wasm IIRC wasm is not polyfillable or transpilable, so if you're targeting users on any of those red cells, then wasm is not for you. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Travis Problem

2018-02-01 Thread Andy
Hi, im trying to convince Travis to test my app: https://github.com/kakulukia/django-secrets But its failing for all python3 versions. Because my system python 3 is 3.6.4 i just installed pyenv, created a 3.6.3 (latest python 3.6 at Travis) virtualenv and ran the tests. On my local system they

Re: django-vue

2018-02-01 Thread Andy
I made a project template that is already configured to use vue and a lot more. https://github.com/kakulukia/django-default-project Am Mittwoch, 31. Januar 2018 12:55:48 UTC+1 schrieb Mohammad ariyan bin layek: > > Hii guys is there any good resouce to integrate django with vue ? > -- You

Re: Customizable Invoice

2018-02-01 Thread Rakhee Menon
Hi Andreas, Yeah you are right I want to create a backend solution for storing the information about the invoices once any changes are done in the invoice format. For instance a customer might change the fontsize of any column, add any column or one might change the position of their company

Re: Django-hotsauce: Current status and roadmap

2018-02-01 Thread Etienne Robillard
Hi, Actually, I want to benchmark the WSGI application/handler of Django 2.0.1. And, I want to compare the Gevent loop engine with python based poll/epoll . Do i really need to setup django with uwsgi to make theses tests/benchmarks? Etienne Le 2018-01-31 à 19:02, Etienne Robillard a écrit 

Re: querying multiselectcheckbox

2018-02-01 Thread Andy
Once you fixed the typo in your model name its Participants.objects.filter(track_events__in=['100M', '200M']).values_list('Full_name') And you should use single case for model name (Participant) and lower case for full_name as you did with the other attributes. -- You received this message

Re: javascript transpilers

2018-02-01 Thread Mike Dewhirst
On 30/01/2018 6:33 PM, Andréas Kühne wrote: If you are using django in the "normal" way - you should just be able to add the message to the messages contrib package. Then the message should show when saving? Because when you click on the save button you should post your form and that method