Re: Is DJango bad for conveying business-logic?

2011-12-14 Thread Tiago Almeida
"Business Logic" is too broad to give you a good answer. If you mean stuff like calculating salaries (if your domain is HR) or determining if a 'monster' is dead (for a game) then django should pose no obstacle since it is based in python and you should implement all that logic in your own

Re: Is DJango bad for conveying business-logic?

2011-12-14 Thread Alec Taylor
Thanks all. DJango-erp looks interesting in and of itself. Is there an ERP solution open-sourced with DJango that is maintained? On Thu, Dec 15, 2011 at 1:08 AM, bobhaugen wrote: > I'm developing quite complex business systems in Django, and if you > google for "django

Re: Is DJango bad for conveying business-logic?

2011-12-14 Thread bobhaugen
I'm developing quite complex business systems in Django, and if you google for "django erp" you'll find a bunch of those. -- 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

Re: Is DJango bad for conveying business-logic?

2011-12-14 Thread Derek
I'd echo this. In my experience, the code to implement business logic is far, far less complex than that required to implement databases, web servers, email systems etc. etc. The skill required here is a mix of understanding of user/business requirements and coding ability. The best tool in the

Re: Is DJango bad for conveying business-logic?

2011-12-13 Thread Tomek Paczkowski
In my experience the only thing that locks you in Django is not realizing it's just Python and it's just programming. Use patterns and best practices. Don't think of models as be-all and end-all business logic. Plan wisely and you'll be good. -- You received this message because you are

Is DJango bad for conveying business-logic?

2011-12-13 Thread Alec Taylor
Good morning, I am almost 100% locked in to DJango for the projects I have been planning. The final "myth" I'd like to "dispel" is that DJango is "mediocre" at conveying business-logic. Direct quote by Peter Shangov: Whatever your choice of framework your real-life needs will very quickly