Re: eCommerce Search

2014-12-18 Thread Patti Chen
You can use haystack(http://haystacksearch.org/) to communicate with search engines. On Thu, Dec 18, 2014 at 5:20 AM, Jonathan Baker wrote: > Also, check out: https://github.com/alex/django-filter > > On Wed, Dec 17, 2014 at 2:11 PM, John Rodkey wrote: >> Yes, that is what I'm looking for. I'm

Re: Possible Bug - PositiveSmallIntegerField Enables Saving Negative Values

2014-09-19 Thread Patti Chen
I guess you're probably using SQLite as the database engine. "unsigned integer" and "signed integer" belong to same affinity in SQLite (http://www.sqlite.org/datatype3.html). Even if you specify "unsigned int" for the column during creation, you can save negative values without any error. If you us

Re: Tango with Django tutorial, problem getting category function to pass a variable

2013-10-27 Thread Patti Chen
Hi Jimmy, Could you please check your urls.py? You need to pass category_name_url in url mapping. Read this section in the book and check this