Django Sprint in Kraków, PL: 15-16 Feb 2014

2014-01-08 Thread Tomek Paczkowski
[Cross posting with django-developers] Hello, Pykonik, Kraków Python User Group, would like to invite you to 3rd Django Sprint in Kraków. We would like this event to become a winter tradition, so come and join us! This year we meet on weekend of 15th and 16th February in brand new offices of

DjangoCon Europe 2013 Ticket Lottery

2013-01-04 Thread Tomek Paczkowski
Hi! Organizers of DjangoCon Europe 2013 are having ticket givaway. Details here: http://blog.djangocircus.com/post/39650571271/win-a-free-ticket-in-lottery -- Tomek -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on

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

Re: Django Forms and Twitter Bootstrap - Add fieldset, div wrapper and CSS labels to Django Forms?

2011-12-12 Thread Tomek Paczkowski
Check out this little tool: http://pypi.python.org/pypi/django-widget-tweaks Here's how I use it: https://github.com/oinopion/twitz/blob/master/templates/statuses/_status_update_form.html -- You received this message because you are subscribed to the Google Groups "Django users" group. To view

Re: Error 500 instead of 404

2011-11-20 Thread Tomek Paczkowski
If you dont have 404.html file, than Django will raise exception that 404.html is not found. Next, if you dont have 500.html your exception is generating new exception on lack of 500.html. Make sure you have both files. Eg: $ touch templates/{404,500}.html -- You received this message

Fixtures and FileField

2011-10-25 Thread Tomek Paczkowski
Hello, I'm looking for some way of bundling files from FileFields into fixtures. There is clear void of information on this subject. -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit

Testing reusable apps

2011-09-02 Thread Tomek Paczkowski
Hi, I cannot find any good source on how test reusable apps. I poked around and found out that people (django-registration, south) tests on blank project. This seems kind of wrong having to make some outside directory to be able to run tests. Isn't there any better way? -- You received this