Re: Industrial Analytics

2018-02-26 Thread Matemática A3K
On Sun, Feb 25, 2018 at 12:12 PM, Raj wrote: > Dear All, > > Can we use Django for Industrial Analytics ? . Where data volume is huge > & with frequency in Mill seconds. > Yes :) > > Can someone name some examples of such industrial analytics application > developed using Django. > Not to m

Re: Trying to use tooltips in django 2.0 form

2018-02-26 Thread Matemática A3K
On Mon, Feb 26, 2018 at 9:16 AM, Alan wrote: > Hi there, > > I have this in my forms.py: > > class SubmissionForm(forms.Form): > > > molecule_file = > forms.FileField(validators=[FileExtensionValidator(settings.CONTENT_TYPES), > file_size], help_text="Required: Select a PDB, MDL or MOL2 file

Seeking professional help for frontend design for a small django project

2018-02-26 Thread cjwalter
Hi everybody I’ve started a small django website which is up and running but could benefit from some frontend polish (bootstrap3). As I need to launch it by end of this week this is kind of time critical, but I assume for someone who is specializing in this kind of work it will take a few hou

Re: sqlite3.NotSupportedError: URIs not supported

2018-02-26 Thread Dylan Reinhold
The original email was from 2 years ago, So I'm sure a lot has changed. Dylan On Mon, Feb 26, 2018 at 12:49 PM, Samantha Atkins wrote: > Well this is useless to those of us actually on python3. Exactly what > version of what fixeds this issue *for* python3? > > On Wednesday, August 24, 2016 at

Re: sqlite3.NotSupportedError: URIs not supported

2018-02-26 Thread Samantha Atkins
Well this is useless to those of us actually on python3. Exactly what version of what fixeds this issue *for* python3? On Wednesday, August 24, 2016 at 1:16:53 PM UTC-7, Jeff Silverman wrote: > > Can anyone point me in the right direction to solve this? I am running > DJANGO with python3.4 in

Re: autocomplete

2018-02-26 Thread carlos
Hi django 2 ready autocomplete in admin https://docs.djangoproject.com/en/2.0/ref/contrib/admin/#django.contrib.admin.ModelAdmin.autocomplete_fields regards. On Mon, Feb 26, 2018 at 12:05 PM, Kasper Laudrup wrote: > Hi Mafabi, > > On 2018-02-26 15:51, Mafabi Emmanuel wrote: > >> how do i desig

Re: Disconnect WS on server shutdown

2018-02-26 Thread Andrew Godwin
At the moment there is not - you should follow this issue: https://github.com/django/daphne/issues/177 On Mon, Feb 26, 2018 at 9:37 AM, Igor Partola wrote: > I am running into an issue with one of my applications that is running on > Heroku. Basically during a deploy, the old daphne process gets

Re: autocomplete

2018-02-26 Thread Kasper Laudrup
Hi Mafabi, On 2018-02-26 15:51, Mafabi Emmanuel wrote: how do i design an autocomplete in django 2.0 This was the first hit on a Google search: https://django-autocomplete-light.readthedocs.io/en/master/ I don't have any experience with it though, but at least there seems to be quite a lot

Disconnect WS on server shutdown

2018-02-26 Thread Igor Partola
I am running into an issue with one of my applications that is running on Heroku. Basically during a deploy, the old daphne process gets shut down and a new one takes over. The problem with this is that some users are still connected to the old daphne process and are still members of various gr

autocomplete

2018-02-26 Thread Mafabi Emmanuel
how do i design an autocomplete in django 2.0 -- 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,

Re: How to install and use Django

2018-02-26 Thread Bhaskar Bhushan
On Friday, February 9, 2018 at 3:58:19 AM UTC+5:30, Inderjeet Kaur wrote: > > Hi > > I am new to Django. can anyone please help me with installation and > starting a project. Does Django have IDE like dreamweaver or Visual studio > to design a website? > I have installed Python 3.6 on my W

Trying to use tooltips in django 2.0 form

2018-02-26 Thread Alan
Hi there, I have this in my forms.py: class SubmissionForm(forms.Form): molecule_file = forms.FileField(validators=[FileExtensionValidator(settings.CONTENT_TYPES), file_size], help_text="Required: Select a PDB, MDL or MOL2 file") But I am failing to make it work in my submit.html template.

Re: object_list in html

2018-02-26 Thread Alan
That worked! Many thanks! On 23 February 2018 at 17:38, Dylan Reinhold wrote: > I would add an is_running flag into the context_data > > def get_context_data(self, **kwargs): > data = super().get_context_data(**kwargs) > data['is_running'] = Submission.objects.filter(juser=se