Using Django to white-label sites for multiple clients

2011-03-02 Thread Greg Pelly
I'm looking to "white label" a site built using Django. For those unfamiliar with white-labeling, we would like my site (call it "Amazing Site") to be able to be customized by sponsors A and B. Customer A provides us with their header, footer, css, and we can do *basic* re-branding, in order to pr

Re: Displaying images

2010-08-19 Thread Greg Pelly
didn't do it :( > Thanks though :) > > On Thu, Aug 19, 2010 at 1:43 PM, Greg Pelly wrote: > > try this: > > def math_form(request): > > return render_to_response('form.html', > > {}, context_instance=RequestContext(request)) > > > > greg > &g

Re: Displaying images

2010-08-19 Thread Greg Pelly
e Groups > "Django users" group. > To post to this group, send email to django-us...@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://groups

Re: generating random keys/passwords

2010-08-13 Thread Greg Pelly
And to answer your more general question about email signups, have a look at Django Registration. It should have everything you need. http://bitbucket.org/ubernostrum/django-registration/wiki/Home On Fri, Aug 13, 2010 at 3:44 PM, Greg Pelly wrote: > have a look at Django Command Extensi

Re: generating random keys/passwords

2010-08-13 Thread Greg Pelly
have a look at Django Command Extensions: http://code.google.com/p/django-command-extensions/ sample usage: $ ./manage.py generate_secret_key xr7+43ak=i^2+ommc_e6xn$6vph)_$ffb$n3kp#o1!675euxdu Greg On Fri, Aug 13, 2010 at 3:32 PM, bagheera wrote: > Hi, i'm looking for python module to genera

Re: scaling my site

2010-07-23 Thread Greg Pelly
You will need to find/hire a sysadmin if you can't do this yourself. We looked into Amazon for our purposes and found their interface kludgy and their documentation confusing rather than helpful. Also, I kept a server running idle on Amazon for a month and it was more expensive than slicehost ($20

Re: What is a good source code control software?

2010-07-16 Thread Greg Pelly
bed to the Google Groups > "Django users" group. > To post to this group, send email to django-us...@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com > . > For more options, visit this group at > http://group

Re: Temporary group membership tally - Any clever way to do it?

2010-07-15 Thread Greg Pelly
ango-us...@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. > > -- Greg Pelly CEO / CTO, Munchly Inc. -- You rece

Deleting sessions without Request object

2010-07-09 Thread Greg Pelly
Is it possible to log out a user manually? The desired result is that after I do this, the user will be forced to log in again. I will not have an active Request object (ie, this will be done from the admin app or a management command, not a view). Can I simply add the Session table to the admin

virtual currency / check-in apps

2010-06-22 Thread Greg Pelly
Can anyone recommend any apps/tools for implementing either virtual currency or "check-ins" in Django? Thanks, Greg -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscr

"select for update" with models

2010-05-18 Thread Greg Pelly
Hi, I'm new to Django -- looking to write a credit card transaction module and I need the ability to perform a "SELECT FOR UPDATE" (mysql) so that an order does not get processed by two different threads. I see an open ticket for this here: http://code.djangoproject.com/ticket/2705 Has anyone su