Re: Django apps

2014-04-01 Thread Lee
Start here and follow the tutorial: https://docs.djangoproject.com/en/1.6/intro/tutorial01/ Then you may want to run through this if you are interested in the goe stuff: https://docs.djangoproject.com/en/1.6/ref/contrib/gis/tutorial/ That should give you a good idea on where to start with your

Re: Django apps and models

2010-11-05 Thread andy
Thanks for the advise, I had considers this option, and I really dose seem that apps are move for generic features as you pointed out but I have about 10 tables which are as depended in structure as the ones noted above. I really don't what to have too much code in one view.py or model.py file. For

Re: Django apps and models

2010-11-05 Thread derek
I'll add my 2c here... I don't think you need to create an app for this (not yet). Just create a normal Django project and go from there. Apps are more meant for very generic types of functionality that can be used in many, many situations e.g. tagging. Your design is still very broad and so ha

Re: django apps that implement ticket filtering?

2009-06-25 Thread Margie
Yeah, I just thought maybe I could leverage some existing code that would support AND and OR of filters and provide an interface where the user can add filters as needed. It seems to me that creating an interface where you AND and OR filters is not so simple. But that's not really a django issue

Re: django apps that implement ticket filtering?

2009-06-25 Thread lzantal
Hi, You could submit all the filters from an html form and in your view function loop through the request.Post and build the queries if the Post value is not empty.Using django.db.models.Q Laszlo Antal http://www.antalconsulting.com Office: 208-699-7508 On Jun 25, 2009, at 2:32 PM, Margie

Re: Django Apps

2008-10-28 Thread Mike Hart
Eldon, maybe we could get together and set up some basic structures for what we want to accomplish. Let me know. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email

Re: Django Apps

2008-10-26 Thread eldonp2
Ian, this is awesome stuff! I'm an amateur Python/Django'er - learning them in my spare time, hopefully to write an eCommerce webapp. I am looking for the easiest/quickest way to do this. How easy is it going to be to integrate Django-CMS and Satchmo features into a webapp? What approach should

Re: Django Apps

2008-10-24 Thread Ian Maurer
You should probably start by looking at these 2 projects for CMS and eCommerce: http://django-cms.org/ http://www.satchmoproject.com/ Good luck and welcome to Django! regards, Ian http://itmaurer.com/ --~--~-~--~~~---~--~~ You received this message because you a

Re: Django Apps

2008-06-28 Thread Russell Keith-Magee
On Sat, Jun 28, 2008 at 5:58 PM, keegan3d <[EMAIL PROTECTED]> wrote: > > Hey guys, > > I am new to Django and was wondering if there are any good places to > get Django apps like wikis, blogs, etc? http://djangoplugables.com/ Yours, Russ Magee %-) --~--~-~--~~~---~--

Re: Django Apps

2008-06-28 Thread Eric Abrahamsen
You can try google code projects: http://code.google.com/hosting/search?q=django&btn=Search+Projects many of the most often-used public apps are hosted there. There's also http://djangosearch.com, though I haven't used that much... Happy hunting, E On Jun 28, 2008, at 5:58 PM, keegan3d wrote:

Re: Django apps

2007-03-01 Thread Aidas Bendoraitis
Have a look here: http://code.djangoproject.com/wiki/DjangoResources#ExampleDjangoapplicationswithsourcecodetemplates Regards, Aidas Bendoraitis [aka Archatas] On 2/28/07, Alessandro Ronchi <[EMAIL PROTECTED]> wrote: > > Is there any place where I can find django based apps? > > I'm looking for

Re: Django apps

2007-02-28 Thread Joseph Heck
http://code.djangoproject.com/wiki/DjangoPoweredSites has quite a list... although I expect you're looking more for the resources list on http://code.djangoproject.com/wiki/DjangoResources -joe On 2/28/07, Alessandro Ronchi <[EMAIL PROTECTED]> wrote: > > > Is there any place where I can find dj