Re: Document flow between parties

2019-07-31 Thread Mike Dewhirst
On 1/08/2019 1:35 am, Kean wrote:  Hi . Please can anyone refer me to a good source to learn how to write a programme which supports document creation, flow, conversion, management and tracking between parties? https://djangopackages.org/grids/g/document-management/ These are all django pac

Re: Writing your first Django app, part 1 - Can't Follow it

2019-07-31 Thread Anike Sadia
Hi I am new here On Thu, 1 Aug 2019 at 01:33, Lim Kai Wey wrote: > Sammy, would you mind attaching the whole project folder? Thanks > > Regards, > Kai Wey > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group a

Re: Writing your first Django app, part 1 - Can't Follow it

2019-07-31 Thread Lim Kai Wey
Sammy, would you mind attaching the whole project folder? Thanks Regards, Kai Wey -- 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...@googl

CREATE Model

2019-07-31 Thread Abhishek Tiwari
Hi.. I was given this description on which i have to design model - You have to design a user model in Django. You need to consider following use cases Organization has multiple user type 1. Organization's own employees 2. Brands which do marketing on organization 3. Devel

Re: Writing your first Django app, part 1 - Can't Follow it

2019-07-31 Thread Sammy Agrawal
I’m on Mac, and am still having this problem. On Wed, Jul 31, 2019 at 10:46 AM Charlotte Wood < charlotte.w...@epiccharterschools.org> wrote: > Windows? > > On Wed, Jul 31, 2019, 6:20 AM Sammy Agrawal wrote: > >> Still having this problem- no solution found >> >> On Tuesday, February 9, 2016 at 7

Document flow between parties

2019-07-31 Thread Kean
Hi . Please can anyone refer me to a good source to learn how to write a programme which supports document creation, flow, conversion, management and tracking between parties? Best, K -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsub

Re:

2019-07-31 Thread Lim Kai Wey
I’m not sure this could help your situation but it did solve mine for Photo Uploading, since uploading images and files are similar. Hope it helps! https://stackoverflow.com/questions/34006994/how-to-upload-multiple-images-to-a-blog-post-in-django Regards, Kai Wey -- You received this message b

Re: Writing your first Django app, part 1 - Can't Follow it

2019-07-31 Thread Charlotte Wood
Windows? On Wed, Jul 31, 2019, 6:20 AM Sammy Agrawal wrote: > Still having this problem- no solution found > > On Tuesday, February 9, 2016 at 7:22:58 PM UTC-5, michaela...@gmail.com > wrote: >> >> Hi, >> >> I am running into the same problem as this: >> >> http://stackoverflow.com/questions/304

Re: Writing your first Django app, part 1 - Can't Follow it

2019-07-31 Thread Lim Kai Wey
To Sammy, Are you sure your urls.py is in the correct file directory? As in it should be in mysite/mysite/urls.py instead of mysite/urls.py Regards, Kai Wey -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and sto

Re: Recreating SQL query in ORM

2019-07-31 Thread Simon Charette
Hello, assuming you have a FullMatch model mapped to your FullMatches table the following should do. FullMatch.objects.filter( job_id=job_id, ).values( seq=Concat('loading_code', ...), ids=Concat('loading_id', ), ).annotate( total=Count('*'), ).order_by('-total') Using .value

Re: Writing your first Django app, part 1 - Can't Follow it

2019-07-31 Thread Karan Mittal
Give the polls.urls in quotes like this. "polls.urls" Karan Mittal On Wed 31 Jul, 2019, 4:50 PM Sammy Agrawal, wrote: > Still having this problem- no solution found > > On Tuesday, February 9, 2016 at 7:22:58 PM UTC-5, michaela...@gmail.com > wrote: >> >> Hi, >> >> I am running into the same pr

Re: Localtunnel with my Django Project

2019-07-31 Thread Vincent
Hello, how did you do it please help? On Monday, October 30, 2017 at 9:51:16 AM UTC+3, yingi keme wrote: > > Thanks alot > > I did it and it worked, added the address to ALLOWED_HOSTS in my > settings.py > > Thanks once again > > Yingi Kem > > On 30 Oct 2017, at 2:02 AM, shreekant bohra > wrote

Re: Writing your first Django app, part 1 - Can't Follow it

2019-07-31 Thread Sammy Agrawal
Still having this problem- no solution found On Tuesday, February 9, 2016 at 7:22:58 PM UTC-5, michaela...@gmail.com wrote: > > Hi, > > I am running into the same problem as this: > > http://stackoverflow.com/questions/30493018/404-error-in-writing-your-first-django-app-tutorial > > Now I can ju

Something about django

2019-07-31 Thread Suraj Thapa FC
Is there any better way with proper good documentation about email verification using jwt. -- 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

Re: select records from a model in another django app

2019-07-31 Thread Marius Räsener
This can have several causes - f.e. did you add the ListView to your urls.py? is the import of the models working? (this implies to check your folder/module structure) Am Mittwoch, 31. Juli 2019 10:44:45 UTC+2 schrieb Perceval Maturure: > > Hi Marius > thanks for your input,i did remove the impo

Re: select records from a model in another django app

2019-07-31 Thread Perceval Maturure
Hi Marius thanks for your input,i did remove the import statements but nothing returned on my template surprisingly in another app the code is working. #view *from django.shortcuts import renderfrom django.views.generic import ListView, DetailView, View, TemplateViewfrom archivesuploads.models