Re: where is base_site.html

2014-06-30 Thread Dariusz Mysior
Yes I have it! Thank You Andreas!!! W dniu poniedziałek, 30 czerwca 2014 18:10:07 UTC+2 użytkownik Dariusz Mysior napisał: > > I use virtualenv with Django 1.6 Python 2.7 and I am use tutorial > https://docs.djangoproject.com/en/1.6/intro/tutorial02/ and I had a > problem becouse I don't know

Re: Call for Papers for Djangocon US 2014 *extended*

2014-06-30 Thread Helton Alves
If my English was better I would go in this year. :/ maybe in the next. 2014-06-30 17:21 GMT+01:00 Christophe Pettus : > Greetings, > > The Call for Papers for Djangocon US 2014 has been extended through July > 15, 2014. (The web site still shows the old date, but will be

Call for Papers for Djangocon US 2014 *extended*

2014-06-30 Thread Christophe Pettus
Greetings, The Call for Papers for Djangocon US 2014 has been extended through July 15, 2014. (The web site still shows the old date, but will be updated shortly.) Please share what you know with us! http://djangocon.us/ Best, -- -- Christophe Pettus x...@thebuild.com -- You

Re: where is base_site.html

2014-06-30 Thread Andreas Kuhne
Hi Dariusz, You will have to find where you have created your virtualenv. In the virtualenv folder you should have a lib/python2.7/site-packages folder. In that folder, you will find all of the libraries you have installed via pip. It is good to know where that folder is, so you can check the

where is base_site.html

2014-06-30 Thread Dariusz Mysior
I use virtualenv with Django 1.6 Python 2.7 and I am use tutorial https://docs.djangoproject.com/en/1.6/intro/tutorial02/ and I had a problem becouse I don't know where I can find file base_site.html from django/contrib/admin/templates where I can't find this place :/ -- You received this

How to simplify this code - newbie question

2014-06-30 Thread Michael Lind Hjulskov
Hi :o) I would like to simplify *get_rating* to fewer lines of code: class Product(AbstractProduct): ... just a little info about the model fields ... title = charfield parent = foreignkey(Product, related_name='variants') rating = a float def is_group - return True if it is

Re: Full text search available on PostgreSQL?

2014-06-30 Thread Anssi Kääriäinen
On Saturday, June 28, 2014 7:15:05 PM UTC+3, Bastian Kuberek wrote: > > Hi, > > Just saw that django.contrib.admin.ModelAdmin.search_fields > > full > text search only support MySQL. > > Are