Re: Table with search results and returning to previous page.

2009-08-30 Thread Frank Wiles
er other args to your search view you need, when redirecting to your search page. -- Frank Wiles Revolution Systems | http://www.revsys.com/ fr...@revsys.com | (800) 647-6298 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Help with admin inlines

2009-08-30 Thread Frank Wiles
ister(Manufacturer, ManufacturerAdmin) You need to import the Manufacturer model in your admin.py -- Frank Wiles Revolution Systems | http://www.revsys.com/ fr...@revsys.com | (800) 647-6298 --~--~-~--~~~---~--~~ You received this message because you are subscribe

Re: problem with django-voting

2009-03-14 Thread Frank Wiles
> > If I remove this line everything is fine. I wasn't getting this error > before but I had to wipe my server and create a new db. Anyone know > why this is happening? Just a guess, but it sounds like you're assuming there will be data in the table somewhere in your code. Try a

Re: Strategy for extending DB tables with additional columns

2009-03-19 Thread Frank Wiles
7;t expect to see any serious performance issues with your plan. Assuming given adequate hardware. Sure it would be an issue if you have 100k users and are running this on a 5 year old laptop, but that isn't a good reason to not build the software properly. -

Re: Editing base_site.html

2009-03-19 Thread Frank Wiles
version into your own template directory, maintaining the nested structure ( i.e. admin/base_site.html ) and editing it to suit your needs. Hope that helps! -- Frank Wiles Revolution Systems | http://www.revsys.com/ fr...@revsys.com | (800) 647-6298 --~--~-~--~~~---~

Re: Database error: Table 'test_XXX.django_content_type' doesn't exist

2010-10-28 Thread Frank Wiles
ng for you) you'll find that the table 'django_content_type' does indeed not exist. Possibly because you don't have 'django.contrib.contenttypes' in INSTALLED_APPS. -- Frank Wiles Revolution Systems | http://www.revsys.com/ fr...@revsys.com   | (800) 647-6298 -- You re

Re: Using localflavor with admin?

2010-10-28 Thread Frank Wiles
o: from django.db import models from django.contrib.localflavor.us.models import PhoneNumberField class Test(models.Model): phone = PhoneNumberField() You'd obviously need to reference the exact field you're looking for, but then it just automagically works in the admin. -- Frank Wiles Revolution Sy

Re: admin usage

2010-10-29 Thread Frank Wiles
be using the interface many times per day I don't use the admin. Don't get me wrong, the admin is great, but it isn't ideal for many repetitive tasks. -- Frank Wiles Revolution Systems | http://www.revsys.com/ fr...@revsys.com   | (800) 647-6298 -- You received this message because

Re: Model Issue - wont let me name it follower or followee

2010-06-03 Thread Frank Wiles
ytime you have two ForeignKeys to the same model. Hope that helps! -- Frank Wiles Revolution Systems | http://www.revsys.com/ fr...@revsys.com | (800) 647-6298 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to t

Re: Something like admin.StackedInline where 'extra'

2010-06-03 Thread Frank Wiles
tackedInline where 'extra' would be a > number of travelers. Any idea? Look into inline formsets: http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#inline-formsets This is what you're wanting. -- Frank Wiles Revolution Systems | http://www.revsys.com/ fr...@revsys.c

Re: Apache config. admin page displays without stylesheets

2010-11-01 Thread Frank Wiles
_wsgi and not mod_python as that mod_python project is no longer actively maintained. What you need to do is add a directive for your media locations such that Apache can find these files, or more correctly that Apache believes it is authorized to serve those files. Watch your Apache error lo

Re: Is mod_wsgi web application container?

2010-11-01 Thread Frank Wiles
exactly but..) > Could I use mod_wsgi as web application container? > > Sorry for poor English. > anyway thank you :) It's not called a 'web application container', as that is a Java term, but yes you can think of it that way. In general, mod_wsgi is definitely the to

Re: ImportError: No module named south

2016-05-20 Thread Frank Wiles
sary PIP dependencies for you. Hope that helps! Frank Wiles Revolution Systems | http://www.revsys.com/ fr...@revsys.com | (800) 647-6298 On Fri, May 20, 2016 at 5:07 AM, Priyadharshini S wrote: > When i trying to install RatticDB on ubuntu 12.04 > I got this error please help me to solve &