Re: Advanced search with aggregations

2016-10-06 Thread Raffa
at builds an "advanced search" style form. > From the posted form it builds an query against your model which you can > then aggregate on (either statically with a defined field, or you could > provide a second for asking which field the user would like to aggregate > on). > >

Re: Advanced search with aggregations

2016-10-06 Thread C. Kirby
Hi Raffa, I've built a third-party app that builds an "advanced search" style form. >From the posted form it builds an query against your model which you can then aggregate on (either statically with a defined field, or you could provide a second for asking which field the us

Re: Advanced search with aggregations

2016-10-05 Thread M Hashmi
Kindly provide some details like what are your models so people can understand what you are trying to do according to the available models. On Wed, Oct 5, 2016 at 8:38 AM, Raffa wrote: > Hi all > I have to create a page where I insert some cascade combobox that fill >

Advanced search with aggregations

2016-10-05 Thread Raffa
Hi all I have to create a page where I insert some cascade combobox that fill dynamically through which I perform aggregations on the db records. For example I want to know how many pants I still have in all Italian stores. I select from the combobox that contains the field "area" the "Italia"

Re: Advanced search in django?

2013-07-08 Thread Kamal Kaur
On Sat, Jul 6, 2013 at 9:47 PM, Kamal Kaur wrote: > Sorry, didn't get you. > Can you please elaborate more? Reply awaited. -- Kamaljeet Kaur Blog:http://kamalkaur188.wordpress.com/ -- You received this message because you are subscribed to the Google Groups "Django

Re: Advanced search in django?

2013-07-06 Thread Kamal Kaur
On Sat, Jul 6, 2013 at 9:39 PM, Javier Guerra Giraldez wrote: > not a separate file, but a separate field. either override the save() > method of your model, or connect to the pre_save() signal to keep it > updated with the 'original' text. for searches simply query this >

Re: Advanced search in django?

2013-07-06 Thread Javier Guerra Giraldez
On Sat, Jul 6, 2013 at 11:04 AM, Kamal Kaur wrote: > But don't know how to implement it in my project to > search in database. Do I need to keep a > separate file? or what to do ? not a separate file, but a separate field. either override the save() method of your

Advanced search in django?

2013-07-06 Thread Kamal Kaur
I have found the code for Soundex which is a phonetic algorithm, it is capable of searching from database despite of minor spelling differences. But don't know how to implement it in my project to search in database. Do I need to keep a separate file? or what to do ? Here is the link.

Re: Advanced Search in django

2013-06-28 Thread coded kid
Try django watson https://github.com/etianen/django-watson/ On Thursday, 27 June 2013 09:33:22 UTC+1, Harjot Mann wrote: > > On Thu, Jun 27, 2013 at 1:16 PM, Peith Vergil > > wrote: > > Try using django-haystack. It's a nice Django app, very easy to use, and > > with

Re: Advanced Search in django

2013-06-27 Thread Peith Vergil
What I would probably do in that situation is setup Whoosh and django-haystack. Then use Haystack's EdgeNgramField on your user model's firstname and lastname. On Thu, Jun 27, 2013 at 4:33 PM, Harjot Mann wrote: > On Thu, Jun 27, 2013 at 1:16 PM, Peith Vergil

Re: Advanced Search in django

2013-06-27 Thread Harjot Mann
On Thu, Jun 27, 2013 at 1:16 PM, Peith Vergil wrote: > Try using django-haystack. It's a nice Django app, very easy to use, and > with good documentation: http://django-haystack.readthedocs.org/en/latest/. > It provides a QuerySet like API for several search engine

Re: Advanced Search in django

2013-06-27 Thread Peith Vergil
Try using django-haystack. It's a nice Django app, very easy to use, and with good documentation: http://django-haystack.readthedocs.org/en/latest/. It provides a QuerySet like API for several search engine backends. It works with Solr, ElasticSearch, Whoosh, Xapian, etc. -- You received this

Advanced Search in django

2013-06-27 Thread Harjot Mann
How can we add advance search in django like google's advance search?? -- 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

Best way to create an advanced search bar for the admin app.

2012-11-20 Thread Nicolas Emiliani
Hi people. I have this huge class Foo that has a lot of attributes , not only that but it has an m2m relation with a through table that specifies values for each relation, and I want to be able to search using those values. For example : class Foo ... class Attr ... and the class

Re: Advanced Search

2011-05-02 Thread pankaj sharma
1 at 1:41 PM, pankaj sharma > <new.pankajsha...@gmail.com>wrote: > > > > > > > > > > > i am new on django, i want to know how can we make advanced search on > > our website. > > > i have database of colleges. and i want to provide the user to search &g

Re: Advanced Search

2011-05-02 Thread Ankit Rai
n we make advanced search on > our website. > > > i have database of colleges. and i want to provide the user to search > the colleges by : > city and name > > i have made single search where user can enter the query and it will > show only those colleges having the quer

Re: Advanced Search

2011-05-02 Thread Daniel França
Hi, you can try: http://haystacksearch.org/ <http://haystacksearch.org/>I think it solves your problem Best Regards, Daniel França On Mon, May 2, 2011 at 5:11 AM, pankaj sharma <new.pankajsha...@gmail.com>wrote: > i am new on django, i want to know how can we make advanced

Advanced Search

2011-05-02 Thread pankaj sharma
i am new on django, i want to know how can we make advanced search on our website. i have database of colleges. and i want to provide the user to search the colleges by : city and name i have made single search where user can enter the query and it will show only those colleges having the query

Advanced search view in admin site.

2011-01-25 Thread hollando
I known that in admin.py I can put in search_fields with parameters I want for search. This works fine. But I want another View just like advanced search in google. There are boxes for me to specific each field. Like I can choose a date etc. And I can give a range for my numeral fields. Or even do

Re: Advanced search issues

2007-10-10 Thread Ben Ford
A good start would be to put that sql in get_min_rent into a queryset... I it's queryset.select(). I'm not sure if you'll then be able to order_by('min_rent') though... Ben On 10/10/2007, Dan <[EMAIL PROTECTED]> wrote: > > > Hi > > I am trying to make an advanced search

Advanced search issues

2007-10-10 Thread Dan
Hi I am trying to make an advanced search page where a user can list guest-houses based on several different criteria. As there can be many rooms in a house each with different availability and rent prices i am having problems constructing a filter for this. Models: class Property(models.Model

Advanced search issues

2007-10-09 Thread Dan
Hi I am trying to make an advanced search page where a user can list guest-houses based on several different criteria. As there can be many rooms in a house each with different availability and rent prices i am having problems constructing a filter for this. Models: class Property(models.Model

Re: Advanced Search on Django?

2007-03-30 Thread Jay Parlar
On 3/30/07, js <[EMAIL PROTECTED]> wrote: > > Hi, > > Now I'm trying to write a 'Advanced search' function like this. > http://code.djangoproject.com/query > > Because I'm still new to Python and Django > writing flexible query like this is a bit hard. > So I s

Advanced Search on Django?

2007-03-30 Thread js
Hi, Now I'm trying to write a 'Advanced search' function like this. http://code.djangoproject.com/query Because I'm still new to Python and Django writing flexible query like this is a bit hard. So I svn checkouted djangoproject.com's source and tried to look at the custom query's code, but I