add a to_kml routine ti contrib.gis.gdal

2008-11-05 Thread guillaume
ers ? where do they come from ? Regards, Guillaume --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe fr

Re: add a to_kml routine ti contrib.gis.gdal

2008-11-16 Thread guillaume
it allows people to build easily Google Earth web services from their data. The potentiallity of the stuff is huge ! Regards, Guillaume On 12 nov, 03:04, Justin Bronn <[EMAIL PROTECTED]> wrote: > Guillaume, > > I had forgot that GDAL now can export toKML, I appreciate you taking &

Re: dynamic creation of model with geodjango ?

2008-08-19 Thread guillaume
Hi Dane, Thanks for these informations. Does it mean that a model dynamically created will now appear in admin section ? Regards, Guillaume On 18 août, 19:22, springmeyer <[EMAIL PROTECTED]> wrote: > Guillame, > > Absolutely. GeoDjango can be used to read new or exis

Re: dynamic creation of model with geodjango ?

2008-08-19 Thread guillaume
Yes, actually I didn't hope anything else. I'll try to catch some geodjango guys up in Cape Town FOSS4G to have a chat about this. It can be something I can find funding for, as it is extremely critical in deploying Spatial data infrastructures. Regards, Guillaume On 19 août, 15:2

Re: dynamic creation of model with geodjango ?

2008-08-25 Thread guillaume
that table, and publish it on the admin site to let people manage the data from there. And I definitely understand it is not trivial at all ! Regards, Guillaume On 19 août, 16:57, Justin Bronn <[EMAIL PROTECTED]> wrote: > > Yes, actually I didn't hope anything else.

Re: Unaccountable syntax error

2008-09-04 Thread guillaume
Sorry guys, I just need a tip : where do you get your models.ColorField from ? I've upgraded to django 1.0, and don't have it ! Regards, Guillaume On 30 août, 16:03, Leaf <[EMAIL PROTECTED]> wrote: > Of course. I just look at the error actually occurs on, not the >

Re: "ColorField"?

2008-09-04 Thread guillaume
Hi Sean, I'm very interested in how you made the ColorField work as I didn't manage to do that ! Help appreciated ! Regards, Guillaume On 21 juil, 21:05, Sean Legassick <[EMAIL PROTECTED]> wrote: > On 8 Jul 2008, at 04:24, Leaf wrote: > > > > > Does anyon

GeoDjango - Ogr seg fault

2008-10-10 Thread guillaume
Hi, I'm experiencing trouble when using geodjango.gdal : from a standard python console, pnt = OGRGeometry(someWKT) goes fine but when using it in Django run by Apache 2.2 mod_python, I get a seg_fault. Would anyone know why ? regards Guil

Re: GeoDjango - Ogr seg fault

2008-10-10 Thread guillaume
Ok, I've found the answer myself : it happens when mod_php is also activated. let mod_python goes alone and it's fine. Don't know why though... On 10 oct, 15:01, guillaume <[EMAIL PROTECTED]> wrote: > Hi, > > I'm experiencing trouble when using geodjango.gdal

ManytoMany relationship question

2008-03-25 Thread guillaume
Hi list, I'm building an app where a model has a manyTomany relationship with User model. There are two things I can't figure out : 1. How can I add to User admin form the list of items related to it ? 2. How can I add a specific field to the relation table ? Thanks,

Re: Newform and File Upload problem

2007-05-07 Thread guillaume
would be great, and probably useful for some other django beginers. Yours, Guillaume. Le lundi 07 mai 2007 � 08:41 -0700, [EMAIL PROTECTED] a �crit : > Hello everybody. > > I am a Django newbie experimenting with some stuff. I am very > impressed by the framework, that made me want t

Re: Newform and File Upload problem

2007-05-08 Thread guillaume
Thanks a lot! It works for FileFiels as well! Yours, Guillaume. Le mardi 08 mai 2007 � 00:20 +, scadink a �crit : > File uploads haven't been completed in newforms. It's not a great > situation, but that's what happens with software that's currently in > devel

GeoDjango : Error in admin site with geom fields

2007-09-16 Thread guillaume
_geom = models.MultiPolygonField(srid=27572) objects = models.GeoManager() class Admin: pass any idea ? Thanks Guillaume --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group.

Re: GeoDjango : Error in admin site with geom fields

2007-09-17 Thread guillaume
seems there's a bad trick like this indeed. I'm gonna check this all. Thanks for the clue On 16 sep, 19:38, "Ariel Mauricio Nunez Gomez" <[EMAIL PROTECTED]> wrote: > Did you have a previous geos installation?? > Maybe you have some old .so's that are being linked instead of the new ones. > > Ari

pre_save on password

2014-07-01 Thread guillaume
ve is happening too late (password is already encrypted). How can I see it just before it is encrypted ? Thanks Guillaume -- 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, se

Re: pre_save on password

2014-07-01 Thread guillaume
Hi, thanks for your reply. Actually I don't want to store the uncrypted password, just submit it to another app registration system, which will hash it then. The two hashing systems are too different and complicated for me to use the django encrypted password in the other application database.

Re: pre_save on password

2014-07-01 Thread guillaume
e it's API registration system and feed it with the clear password. Best regards Guillaume Le mardi 1 juillet 2014 14:17:28 UTC+2, Tom Evans a écrit : > > On Tue, Jul 1, 2014 at 1:12 PM, guillaume > wrote: > > > > Hi, > > thanks for your reply. Actually I don&#

Re: pre_save on password

2014-07-01 Thread guillaume
Hi Phil, Actually not at the hasher level, because I need to know the user's details as well, but it's a good hint. I should try to subclass to User Model set_password method. Thanks ! Guillaume Le mardi 1 juillet 2014 15:03:58 UTC+2, Philip a écrit : > > If the user

Re: Channels 2.0 close code and http response status

2019-01-23 Thread guillaume
Hey I read the spec of websocket handshake and I believe that in abrupt close connection, the server can send either a 403 or 404. I wish there were a way to send a 404. :( On Sunday, June 24, 2018 at 7:21:10 PM UTC+2, Andrew Godwin wrote: > > I'm not quite sure - WebSockets do have browser diff

Re: how to locate the OS currently logged in user??

2008-08-20 Thread Guillaume Lederrey
2008/8/20 PeteDK <[EMAIL PROTECTED]>: > I want to retreive the name of the currently logged in user on the OS > on which my django app lives. > Is this possible? You should realize that there is no direct connection between the user logged in the webserver and the user connecting via HTTP to your

Re: Browser timeout on long processes

2008-08-20 Thread Guillaume Lederrey
2008/8/20 Julien Phalip <[EMAIL PROTECTED]>: > >> If the view is running a loop - how would you provide a variable to another >> view (that Ajax is calling) about the situation? Let's say a percentage >> complete -- I immediately think of a global variable, but am not sure how >> this works in a

Re: how to locate the OS currently logged in user??

2008-08-21 Thread Guillaume Lederrey
2008/8/21 PeteDK <[EMAIL PROTECTED]>: > > The server is running Debian Linux and they are logging on to the > server using the username and password stored in the active directory > on one of the other servers. I'm still not clear on how your user log into the server. Via SSH, HTTP Auth, other ?

Re: how to locate the OS currently logged in user??

2008-08-21 Thread Guillaume Lederrey
2008/8/21 PeteDK <[EMAIL PROTECTED]>: > > > > On 21 Aug., 13:10, "Guillaume Lederrey" <[EMAIL PROTECTED]> > wrote: >> 2008/8/21 PeteDK <[EMAIL PROTECTED]>: >> >> >> >> > The server is running Debian Linux and they are

Re: how to locate the OS currently logged in user??

2008-08-27 Thread Guillaume Lederrey
2008/8/27 PeteDK <[EMAIL PROTECTED]>: > On 21 Aug., 16:25, "Guillaume Lederrey" <[EMAIL PROTECTED]> > wrote: >> 2008/8/21 PeteDK <[EMAIL PROTECTED]>: >> > On 21 Aug., 13:10, "Guillaume Lederrey" <[EMAIL PROTECTED]> >> > wr

"core" is not a field constructor argument anymore

2008-08-29 Thread Guillaume Lederrey
Hello ! After updating to the latest trunk, I get a couple of errors when I have field that define "core=True". After digging into the code, I find changeset 8616 (http://code.djangoproject.com/changeset/8616) that documents that. However, this doesnt seem to be include in the backward incompatib

Re: Working but ugly model code. Need advice.

2008-09-01 Thread Guillaume Lederrey
If you just want to have a clean working solution, have a look at django-photologue (http://code.google.com/p/django-photologue/). It is amazing, and really easy to integrate well. Also have a look at sorl-thumbnail (http://code.google.com/p/sorl-thumbnail/). If you want to write your own code an

Re: "core" is not a field constructor argument anymore

2008-09-01 Thread Guillaume Lederrey
2008/8/30 James Bennett <[EMAIL PROTECTED]>: > > On Fri, Aug 29, 2008 at 5:58 PM, Guillaume Lederrey > <[EMAIL PROTECTED]> wrote: >> After updating to the latest trunk, I get a couple of errors when I >> have field that define "core=True". After digg

Running doctests

2008-09-01 Thread Guillaume Lederrey
Hello ! I have an app that has a "utils.py" module. I have written quite a few doctests inline. Now my problem is to actually run those tests. Reading the documentation, I get the feeling that I should be able to call them from the tests.py file, but I cant find an example. I have seen a few proj

Re: Running doctests

2008-09-01 Thread Guillaume Lederrey
Thanks for your very fast answer ! But ... see inline 2008/9/1 Malcolm Tredinnick <[EMAIL PROTECTED]>: > > > On Mon, 2008-09-01 at 22:48 +0200, Guillaume Lederrey wrote: >> Hello ! >> >> I have an app that has a "utils.py" module. I have written quite

Re: Using _default_manager in a model causes many idle MySQL connections. (Django 1.0)

2009-04-01 Thread Guillaume Carbonneau
I too am interested in seeing this patch. I'm getting lots of idle connections in postgres On Mar 31, 5:26 am, J wrote: > Hello Michael, > > Would you share your temp patch here? > > TIA, > > J > > On Mar 20, 12:52 am, MikeL wrote: > > > I wasn't sure where this stuff was being tracked, but I d

Re: Enterprise applications with Django

2008-04-16 Thread Guillaume Lederrey
On 16/04/2008, Thomas Guettler <[EMAIL PROTECTED]> wrote: > > I guess YouTube is highly concurrent, distributed ... > > I think you can create enterprise applications with django and python. > > What do you think is possible with Java, that you can't do with python? Having your production team

Re: Distributed databases

2008-04-16 Thread Guillaume Lederrey
On 16/04/2008, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > display this data. Would be also possible, to have different database > types (i would like to have several sqlite databases and one postgres > running)? > > I need all this for scalability reasons. I am choosing framework for IMHO

DateField widget, ModelForm and javascript

2008-04-21 Thread Guillaume Lederrey
Hello ! I have a model that I try to edit with a ModelForm. This model has a DateField property. I render the form in my template with a simple : {{ form.as_p }} I expected the DateField to be displayed as in the admin interface, with a javascript date picker. But I only get a text field. The v

Re: DateField widget, ModelForm and javascript

2008-04-22 Thread Guillaume Lederrey
2008/4/22 Peter Melvyn <[EMAIL PROTECTED]>: > > On 4/21/08, Rishabh Manocha <[EMAIL PROTECTED]> wrote: > > > I'd be interested in knowing how to get it to show up too (what JS/CSS > > files need to be added, whether there is some setting we can use in > > the python code itself or do we hav

Re: Largest django sites?

2008-04-23 Thread Guillaume Lederrey
2008/4/23 bcurtu <[EMAIL PROTECTED]>: > But, turning back to my question... Can you tell these sites with > thousands or hundreds of thousands hits per minute? Ok, let's leave > apart their stats... Any big name on the internet? slashdot? twitter > is RoR... Pownce (http://pownce.com/) is bui

Re: Which kind of model inheritance is most suited?

2008-04-30 Thread Guillaume Lederrey
2008/4/29 francesco <[EMAIL PROTECTED]>: > I'd like to implement two kind of users in my system: a buyer and a > seller. > Both kind of users should, of course, inherit from a user model. > As I'd like to use the authentication framework from django.contrib, > should I have the "user" as tabl

date_based.archive_index and "IS NULL" query

2008-05-01 Thread Guillaume Lederrey
Hello ! I am getting a strange query from the archive_index generic view : SELECT DISTINCT CAST(DATE_FORMAT(`news_news`.`publication_date`, '%Y-01-01 00:00:00') AS DATETIME) FROM `news_news` WHERE `news_news`.`publication_date` IS NULL ORDER BY 1 ASC I dont understand where the "IS NULL" comes

Re: date_based.archive_index and "IS NULL" query

2008-05-01 Thread Guillaume Lederrey
I forgot to add : I'm running django-trunk, so it might be related to the queryset refactoring merge ? 2008/5/1 Guillaume Lederrey <[EMAIL PROTECTED]>: > Hello ! > > I am getting a strange query from the archive_index generic view : > > SELECT DISTINCT C

urls() and request.user

2008-05-01 Thread Guillaume Lederrey
rk because the request isnt in the scope. I could redefine a view in my views.py and do the work on the request manually, but i have a feeling there is a solution to do that directly in my urls.py. any idea ? Thanks ! Guillaume -- Jabber : [EMAIL PROTECTED] Skype : Guillaume.Lederrey Projects :

Re: urls() and request.user

2008-05-04 Thread Guillaume Lederrey
2008/5/2 Nathaniel Whiteinge <[EMAIL PROTECTED]>: > > On May 1, 10:04 am, "Guillaume Lederrey" > > <[EMAIL PROTECTED]> wrote: > > This of course doesnt work because the request isnt in the scope. I > > could redefine a view in my views.py and d

Re: Empty Result set

2008-05-07 Thread Guillaume Lederrey
2008/5/6 jwwest <[EMAIL PROTECTED]>: > What's the preferred method of checking to see if a result set is > empty in a view? For instance, I'm writing blog software and have a > view by year method. If there are no posts, I want to raise a http404. > > I've tried == {} and == [] to no avail. M

Re: urls() and request.user

2008-05-12 Thread Guillaume Lederrey
suggestions of improvements are welcomed ... MrG 2008/5/5 Nathaniel Whiteinge <[EMAIL PROTECTED]>: > > On May 4, 5:42 am, "Guillaume Lederrey" <[EMAIL PROTECTED]> > wrote: > > > I havent done any functional programming in a long time , but ... isnt > >

Re: time and attendance management system

2008-05-29 Thread Guillaume Lederrey
Your question is very general, so it is difficult to give you a meaningful answer ... If you give us a much more precise description of your problem, or if you ask much more specific questions, you might get a useful answer. Here is a probably completely off-topic answer : You will make your emp

Re: time and attendance management system

2008-05-29 Thread Guillaume Lederrey
I'm afraid you missed step 7 : 7) profit ! 2008/5/29 Tim Chase <[EMAIL PROTECTED]>: > >> hi...related to the same problem i also have to designe >> forms,reports and tables for ma data base ...will plz guide me > > It's a fairly trivial process so I will guide you: > > 1) get a server (I recomme

mod_python/sqlite status

2007-01-16 Thread Guillaume Valadon
Hi, What is the status of mod_python and sqlite ? Do you think that I should switch to another database instead ? Thanks, Guillaume ps: note that after hours of fights, it is working on my gentoo with the following packages. But runserver is now broken. net-www/apache-2.0.58-r2 dev-python

More than one ForeignKey referencing the same model?

2006-07-18 Thread Guillaume Pratte
x27;. 2 errors found. If I comment out "backup_person", it works. I don't want to use a ManyToMany relationship, because then would not be able to differentiate the principal from the backup. Is there a way around? Thanks, Guillaume Pratte --~--~-~--~~--

Re: More than one ForeignKey referencing the same model?

2006-07-18 Thread Guillaume Pratte
Thanks. Le mardi 18 juillet 2006 15:32, Corey Oordt a écrit : > Take a look at this page for a start: > http://www.djangoproject.com/documentation/models/m2o_recursive2/ > > It's for one-to-many, but it might work... > > Corey > > On Jul 18, 2006, at 3:20 PM, Guillaume

Not failing silently on undefined variables in the template system?

2006-07-26 Thread Guillaume Pratte
o with the current code. Thanks, Guillaume Pratte --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this

Re: Not failing silently on undefined variables in the template system?

2006-07-26 Thread Guillaume Pratte
n and rendering my code harder to maintain. Guillaume Le mercredi 26 juillet 2006 14:10, Bill de hÓra a écrit : > I'd say verify the variable set in the view before you emit and fail at > that point. Failing at the template allows designers to break sites. > > Guillaume Pra

Re: Not failing silently on undefined variables in the template system?

2006-07-28 Thread Guillaume Pratte
well done, I was trying to use it for something it was not conceived to perform. I found Cheetah fits more my needs for what I intend to do. Thanks for your quick replies. Guillaume Le mercredi 26 juillet 2006 17:26, Bill de hÓra a écrit : > I'd assumed you were define variable value

Configurable LDAP authentication

2006-08-15 Thread Guillaume Pratte
=== Copy the code into /usr/lib/python2.4/site-packages/django/contrib/auth/ldap_backend.py Guillaume Pratte -- Any views and opinions expressed in this email are solely those of the author and do not necessarily represent those of Revolution Linux. --~--~-~--~~

Re: Query Set to search for a combination of model fields?

2012-03-16 Thread Guillaume Chorn
irst name, but I find it annoying that I had to do this even though my primary keys are in this same order. I thought the default sort order was by pk? cheers, Guillaume On Fri, Mar 16, 2012 at 11:29 AM, Shawn Milochik wrote: > Look at how the Q objects are being used in the example and it's

Re: How to change widgets for admin site?

2012-04-16 Thread Guillaume Chorn
nput area relative to my other CharFields with much shorter max_length values (such as "title", which has a max length of only 1000). cheers, Guillaume On Mon, Apr 16, 2012 at 4:51 PM, Marc Patermann < hans.mo...@ofd-z.niedersachsen.de> wrote: > Hi, > > Gchorn schrieb (16

Re: How to change widgets for admin site?

2012-04-16 Thread Guillaume Chorn
Shoot! I was thinking that might be the case originally, but I must have overlooked TextField in the model field docs. Thanks!!! I'm still curious though--how can I find out what all of the CSS classes are that are defined by the default admin style sheet (I guess I'm asking where this style sh

Re: Can't access database with normal Ubuntu Terminal user

2012-04-16 Thread Guillaume Chorn
Something more specific in case it helps: as an example, when I try to access my admin view while logged in as my regular user ("guillaume") instead of "postgres", I get the following error: OperationalError at /admin/ FATAL: Peer authentication failed for user "postgr

Re: Can't access database with normal Ubuntu Terminal user

2012-04-17 Thread Guillaume Chorn
ed instructions. On Tue, Apr 17, 2012 at 3:03 PM, kenneth gonsalves wrote: > On Tue, 2012-04-17 at 14:50 +0800, Guillaume Chorn wrote: > > FATAL: Peer authentication failed for user "postgres" > > suitably edit pg_hba.conf > -- > regards > Kenneth Gonsalves &

__contains, ok but contains how many ;-) ?

2012-05-09 Thread Guillaume Florent
Hi everybody, I would like to know if there if a simple way to know how many times a given field contains a string. e.g. Note.objects.filter(notedescription__contains='keyword') What would be the recommended way to know how many times 'keyword' is hit in the 'notedescriptiont' field? Do I have have

Re: How-to for static files?

2011-11-22 Thread Guillaume Chorn
.py file, but mine doesn't have such a section (nor do I remember it ever being there). Should I just add it in? thanks, Guillaume On Tue, Nov 22, 2011 at 6:56 PM, Ivo Brodien wrote: > Does your generated HTML source say: > > type="text/css" /> > > ?? > > I

Re: How-to for static files?

2011-11-22 Thread Guillaume Chorn
it's still looking for /view/stylesheet.css. Am I missing something else? thanks, Guillaume On Tue, Nov 22, 2011 at 10:42 PM, Ivo Brodien wrote: > > Finally, I have another question. In my settings.py file, there is actually > no section for TEMPLATE_CONTEXT_PROCESSORS. I

Re: How-to for static files?

2011-11-22 Thread Guillaume Chorn
ile or something. thanks, Guillaume On Wed, Nov 23, 2011 at 7:33 AM, Ivo Brodien wrote: > In your original post you had the url like this: > > (r'^home/$','myapp.views.homepage'), > > > than your the url starts with view instead of home so there might be &

Re: How-to for static files?

2011-11-23 Thread Guillaume Chorn
shows up if I open the template file directly using a browser. But it still doesn't show up when loading up the page on the development server. thanks, Guillaume On Wed, Nov 23, 2011 at 9:57 AM, Ivo Brodien wrote: > Hi, > > looks fine. > > yes, show your views.py > > and

Re: How-to for static files?

2011-11-23 Thread Guillaume Chorn
7/lib/python2.7/lib-old', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages'] Did something happen to my context.py file? Here it is: http://dpaste.com/66077

Re: How-to for static files?

2011-11-23 Thread Guillaume Chorn
ting close! =) thanks, Guillaume On Wed, Nov 23, 2011 at 8:08 PM, Ivo Brodien wrote: > you did not read the post by Tom Evans, did you? ;) > > remove "django.core.context_processors.tz”, > > or just put: > > ("django.contrib.auth.context_processors.au

Re: How-to for static files?

2011-11-23 Thread Guillaume Chorn
has been changed to '/static' and all of the template tags have been replaced by actual values. So yes, I think that it's just not rendered. What could cause this? thanks, Guillaume On Wed, Nov 23, 2011 at 8:23 PM, Ivo Brodien wrote: > show your myapp.views.py file and is it the

Re: How-to for static files?

2011-11-23 Thread Guillaume Chorn
Oops, I guess maybe you meant since I've changed the views.py file since I last included it? Here is the newest version: http://dpaste.com/660808/ thanks, Guillaume On Wed, Nov 23, 2011 at 9:36 PM, Guillaume Chorn wrote: > Sorry, I thought I included my views.py earlier, but he

Re: How-to for static files?

2011-11-23 Thread Guillaume Chorn
IT WORKED!!! Holy cow. So my main issue was just not using RequestContext, right? Either way, thank you SO much. I have been stuck at this point for months! I can now TRULY begin working on my website. Wow. Thank you. So. Much. best, Guillaume On Wed, Nov 23, 2011 at 9:53 PM, Ivo Brodien

Re: Django can't see my static files

2011-08-02 Thread Guillaume Chorn
so already have STATIC_URL = '/static/' in my settings.py file, and I have the correct methods listed under STATICFILES_FINDERS. But it is still not working. Do I have a syntax error somewhere? Or am I still missing something in another file? thanks, Guillaume On Mon, Aug 1, 2011

Re: Django can't see my static files

2011-08-02 Thread Guillaume Chorn
#x27;,'mainapp.views.news'), (r'^events/(?P\d+)/$','mainapp.views.eventdetail'), (r'^partners/$','mainapp.views.partners'), (r'^admin/', include(admin.site.urls)), ) urlpatterns += staticfiles_urlpatterns() Once again, I'

Re: Django can't see my static files

2011-08-04 Thread Guillaume Chorn
an include that info in each HTML file--but I need to be able to use some basic javascript for my site and right now, because of this issue, I can't even do that. Is there anyone who could help me troubleshoot this? Anyone?? thanks, Guillaume On Wed, Aug 3, 2011 at 12:20 PM, Guillaume Chorn wr

Re: Product to help Localize Django Application

2010-12-21 Thread Guillaume Piot
You need to look into the Rosetta application for Django. It will turn your translation file into paginated form with a textarea for each strings/sentences. Regards Guillaume Piot On 21 Dec 2010, at 15:58, Eric wrote: > We have a Django application that we would like to localize in > S

Re: Using data migration to create initial users errors

2014-11-28 Thread Guillaume Cisco
Did you find a way to use method create_user in a data migration? I can't see a way to import the manager for using it. Le jeudi 16 octobre 2014 23:19:43 UTC+2, Collin Anderson a écrit : > > Hi Ben, > > Yes, the custom manager objects are not available within migrations. I bet > you might be able

Isolate Django apps in different Docker containers

2016-08-25 Thread Guillaume Dupin
Regards, Guillaume -- 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 e

Re: Isolate Django apps in different Docker containers

2016-08-29 Thread Guillaume Dupin
s able to manage different databases but what about the data that must be shared by all the Django appliations (like the data used for the "Admin" application in the case I mentionned above...) Thanks again Best Regards, Guillaume Le jeudi 25 août 2016 16:37:25 UTC+2, Christi

Re: Isolate Django apps in different Docker containers

2016-08-29 Thread Guillaume Dupin
s able to manage different databases but what about the data that must be shared by all the Django appliations (like the data used for the "Admin" application in the case I mentionned above...) Thanks again ! Best Regards, Guillaume -- You received this message because you are subs

Re: modelForm has no _default_manager

2011-08-19 Thread Guillaume DE BURE
Thanks, I overlooked the documentation... Will check this! Guillaume Le 19 août 2011 14:49, "Daniel Roseman" a écrit : > On Friday, 19 August 2011 11:15:53 UTC+1, gdebure wrote: >> >> Hi Everyone, >> >> I've been discovering Django for a few weeks, and l

Re: Displaying information as a table?

2011-09-03 Thread Guillaume DE BURE
Le Samedi 3 Septembre 2011 09:02:52 Levi Campbell a écrit : > In a django template, what's the best way to display information from > the models as a table? I've had no luck searching the documentation > and google. > > As far as I can tell, there is no way to do it fully automatically, but you

Create a modular application

2011-10-12 Thread Guillaume DE BURE
f mechanism ? * If not, does anyone has experience implementing such behaviour ? Thanks in advance for any feedback, Guillaume -- Skrooge, a free, Open Source, personal finances software http://skrooge.org -- You received this message because you are subscribed to the Google Groups "Dj