Re: how to implement lazy settings as django setting

2016-03-03 Thread Daniel Chimeno
Hello, https://www.djangopackages.com/grids/g/live-setting/ El miércoles, 2 de marzo de 2016, 16:53:09 (UTC+1), luisza14 escribió: > > I need to implement a lazy setting like django setting that could be call > globally in several apps but get his values from a model in database. > > I have so

blog base on django!

2016-03-03 Thread 徐帅
I create a mini blog base on python + django. repo : https://github.com/xushvai/io -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsu

Re: GROUP BY without using aggregate function

2016-03-03 Thread Michal Petrucha
On Wed, Mar 02, 2016 at 09:21:03AM -0800, marcin.j.no...@gmail.com wrote: > > > On Wednesday, March 2, 2016 at 6:11:32 PM UTC+1, Dan Tagg wrote: > > > > if your aren't counting or averaging then why are you grouping? > > > > > > > To fast find distinct values within big dataset - some queries on

Re: GROUP BY without using aggregate function

2016-03-03 Thread marcin . j . nowak
On Thursday, March 3, 2016 at 2:28:58 PM UTC+1, Michal Petrucha wrote: > > > Merely based on your vague description, it seems to me that this is > one of the cases where you might be better off writing your SQL query > manually. > > Narrowing results by `filter()` is very handy, in contrast to

Error using Django 1.9 with Postgres

2016-03-03 Thread Fellipe Henrique
Hello, I`m start to using Django 1.9 with PostgreSQL, and when I try to add a record using Admin, show me these error: IntegrityError at /admin/cadastro/mercadoria/add/ insert or update on table "django_admin_log" violates foreign key constraint "django_admin_log_user_id_c564eba6_fk_accounts_we

Re: Add model item with AJAX pop up

2016-03-03 Thread guettli
The comparison grid of autocomplete inputs has a feature called "Add-another outside the admin": These libraries support adding new instances. I don't know if they use an ajay pop-up or an other solution: https://www.djangopackages.com/grids/g/auto-complete/ Am Montag, 8. Februar 2016 21:12:

Re: how to implement lazy settings as django setting

2016-03-03 Thread Luis Zárate
Thanks, El jueves, 3 de marzo de 2016, Daniel Chimeno escribió: > Hello, > https://www.djangopackages.com/grids/g/live-setting/ > > > El miércoles, 2 de marzo de 2016, 16:53:09 (UTC+1), luisza14 escribió: >> >> I need to implement a lazy setting like django setting that could be call globally in

Development of web based image processing package

2016-03-03 Thread Neha Chhattani
hello i want to create a website that will do image processing in real time. i want to load large tiff images i.e. images used in remote sensing and satellite images. I want to do processing on satellite images. is it possible to do this processing in website using django? If yes, how to start

How to create groups for users in Django

2016-03-03 Thread dszczesniak
Hello! I have a problem, like in topic, with creating groups in django. I was searching everywhere and nothing was so interested. What i want from this section: I would like to by filling a column with the name of the group, formed a quite new group, on the occasion of adding me as one of t

Re: Show labels next to ManyToMany raw_id_fields

2016-03-03 Thread Tim Graham
ticket is: https://code.djangoproject.com/ticket/26313 On Tuesday, February 17, 2009 at 4:52:25 PM UTC-5, Alex Gaynor wrote: > > > > On Tue, Feb 17, 2009 at 4:50 PM, João Olavo Baião de Vasconcelos < > joao...@gmail.com > wrote: > >> On Tue, Feb 17, 2009 at 5:15 PM, Alex Gaynor > > wrote: >> >>> S

Re: mathematical function and django connect

2016-03-03 Thread Xristos Xristoou
update my code khow i feel so close but not work again hahaha to many problems . I want to write a django code which takes a number and a list of numbers from the website as user input and and then export a list with results. but if i run my app don't show me results from the progress in html t

Re: Development of web based image processing package

2016-03-03 Thread James Schneider
On Thu, Mar 3, 2016 at 6:25 AM, Neha Chhattani wrote: > hello > i want to create a website that will do image processing in real time. i > want to load large tiff images i.e. images used in remote sensing and > satellite images. I want to do processing on satellite images. is it > possible to do

django: ajax simple loading gif not working/ over-riding render to output page

2016-03-03 Thread clarksonchris81
Hoping that this network can help me out even though this is not strictly django-related, otherwise can someone recommend a group other than stack overflow that could help here? I have a functioning upload function implemented in django. The files being handled are large making for a long wai

Problem Django.19 upgrade and circular imports

2016-03-03 Thread Andres Osinski
Hi everyone! I'm having an issue with circular imports in Django 1.9 that I have not seen in my app, which had been running 1.7 before. I have a Django app in apps.common, which has its associated apps.common.models too. No imports on __init__.py or anything of the sort. When I my app in apps.acco

Re: Development of web based image processing package

2016-03-03 Thread Xristos Xristoou
@james celeny support .grid raster image type ? Τη Πέμπτη, 3 Μαρτίου 2016 - 7:47:56 μ.μ. UTC+2, ο χρήστης Neha Chhattani έγραψε: > > hello > i want to create a website that will do image processing in real time. i > want to load large tiff images i.e. images used in remote sensing and > satell

help with django-guardian

2016-03-03 Thread Joshua Chan
First off, I am new to both django and python. I am working on an existing project that is using django-guardian 1.3.2 There are existing admin.py files, which load just fine. #!/usr/bin/env python # coding: utf-8 from guardian.admin import GuardedModelAdmin from django.contrib import admin fr

help with django-guardian

2016-03-03 Thread Joshua Chan
First off, I am new to both django and python. I am extending an existing app. We have several admin.py files They all look like this: #!/usr/bin/env python # coding: utf-8 from guardian.admin import GuardedModelAdmin from django.contrib import admin from devices import models class SomeMode

Re: Problem Django.19 upgrade and circular imports

2016-03-03 Thread Tim Graham
No ideas off the top of my head. You could try bisecting to find the commit in Django where the behavior changed. https://docs.djangoproject.com/en/dev/internals/contributing/triaging-tickets/#bisecting-a-regression On Thursday, March 3, 2016 at 6:29:38 PM UTC-5, Andres Osinski wrote: > > Hi eve

Re: mathematical function and django connect

2016-03-03 Thread James Schneider
On Thu, Mar 3, 2016 at 10:48 AM, Xristos Xristoou wrote: > update my code khow i feel so close but not work again hahaha to many > problems > > . I want to write a django code which takes a number and a list of numbers > from the website as user input and and then export a list with results. but

Re: Problem Django.19 upgrade and circular imports

2016-03-03 Thread James Schneider
On Thu, Mar 3, 2016 at 3:28 PM, Andres Osinski wrote: > Hi everyone! I'm having an issue with circular imports in Django 1.9 that > I have not seen in my app, which had been running 1.7 before. > > I have a Django app in apps.common, which has its associated > apps.common.models too. No imports o