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 Base, located at Wyczółkowskiego 7 in Kraków.

If you have never contributed to Django, don't worry, this is perfect 
occasion to start! You don't need to know Django itself and you can learn 
everything on the spot.

For those of you who earn money with Django, how about giving back to the 
community? What you learn might help you with your work. Besides, it's so 
fulfilling to finally squash that long lasting, annoying bug that bothered 
you for long time.

While sprint itself is free, we kindly ask you to register at 
https://django-sprint-krk-2014.eventbrite.com — it will help us prepare 
right amount of food and drinks. By the way: bring your own laptop.

More details available at: http://sprint.pykonik.org

Best regards
Tomek

-- 
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 email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/52fdf223-ee80-4df7-8c6f-40bbdbab2e73%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


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 the web visit 
https://groups.google.com/d/msg/django-users/-/y3t-j-0dc_EJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



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 subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/bAuNdW_0hWkJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



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 this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/fxTI8-tXeiQJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



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 because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/WcUacZ3x9nYJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



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 
https://groups.google.com/d/msg/django-users/-/Wm9x3JXJ97YJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



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 message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/X8knTviFzVIJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.