Re: Tango with Django Tutorial

2014-08-14 Thread Mando
Hi, you really didn't give good information as to why it failed and why you had to populate it manually, perhaps you missed a step in the tutorial? What is the specific error you are getting when you run the command to initially populate the database. On Wednesday, August 13, 2014 2:47:37 PM

Re: django beginner

2014-07-08 Thread Mando
can you post the output when you run syncdb? On Tuesday, July 8, 2014 10:13:41 AM UTC-5, Mando wrote: > > Is there anything in your models for the other apps ex: photo, events, > etc... ? syncdb will not do anything with those until you create your > models. Besides that you just n

Re: django beginner

2014-07-08 Thread Mando
Is there anything in your models for the other apps ex: photo, events, etc... ? syncdb will not do anything with those until you create your models. Besides that you just need to crate your view and a url pointer to it and you should get a response. On Tuesday, July 8, 2014 3:13:14 AM UTC-5,

Re: Nginx versus Apache

2013-10-08 Thread Mando
+1 nginx+uWSGI On Tuesday, October 8, 2013 7:16:42 AM UTC-5, Andréas Kühne wrote: > > Hi, > > I was wondering, which server would be best for a production environment. > Nginx or apache? At the moment we are running both, nginx for static files > and apache + mod_wsgi for django. But in the

installation invisible

2013-10-07 Thread Mando
Hi, One option would be to set your pythonbrew install in your path. Or Execute pip using the absolute path to your python install. Either way you will still need to set your path. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Getting Started with Mac OS X

2013-07-14 Thread Mando
Hi, This is the way I have it set up my osx $ sudo pip install virtualenv $ virtualenv --distribute pytho_projects $ source python_projects/bin/activate $ (python projects) pip install django $ django-admin.py startproject myblog and that should get you past that. using virtualenv just makes

Re: How to create a sessio in django

2013-07-09 Thread Mando
Hey Sivaram, Here fav_color is just a a variable and you are putting the value of what is in request.session['fav_color'] into it and request.session['fav_color'] is getting the key/value so think of it this way request { 'session' : { 'fav_color' : 'GREEN' } } you

Re: Kindly help for an interview with Google on python django

2013-01-31 Thread Mando
I don't, but your where I want to be in a couple of years. If you could share your experience that would be really helpful thanks in advance. Also Good luck! On Thursday, January 31, 2013 9:15:11 AM UTC-6, laxglx wrote: > > Hello Everybody, > I have an interview scheduled on monday with

Re: Django and MongoDB

2012-10-26 Thread Mando
you could use pymongo http://api.mongodb.org/python/current/ On Friday, October 26, 2012 3:41:27 AM UTC-5, mh wrote: > > Hi, > what is the current recommendation for using MongoDB with Django? I know > about the django-nonrel project, but it bases on Django 1.3, and we're > heading to Django

Re: [OT] I've created a Django application that allows you to view flickr galleries with minimalist design

2012-09-22 Thread Mando
hey Great job that's very good is there any chance you would be sharing the code? On Saturday, September 22, 2012 3:44:36 AM UTC-5, Ezequiel wrote: > > Hi All, > > I'm a programmer and also an amateur photographer. And looking for a > gallery software for my own photo site is that ended up

Re: How to use FTP to upload files with Django?

2012-09-05 Thread Mando
e able to upload > files... > > On Wed, Sep 5, 2012 at 11:53 PM, Kurtis Mullins > <kurtis@gmail.com > > wrote: > >> Do you want to use FTP to serve or accept the files? >> >> On Wed, Sep 5, 2012 at 2:14 PM, Mando <a.so...@gmail.com >wrote: >> &g

Re: How to use FTP to upload files with Django?

2012-09-05 Thread Mando
Would this work -> nginx-gridfs ? On Wednesday, September 5, 2012 1:09:25 AM UTC-5, Chaney Lee wrote: > > I just want to allow users uploading some videos to server in my website.I > want to use FTP.So ,how to realize it? -- You received this message

Re: bound field object - dynamic forms

2012-09-05 Thread Mando
are you passing it to the template? On Wednesday, September 5, 2012 7:09:57 AM UTC-5, mjh wrote: > > tried {{ issue.x }} x = 0,1,2,3 but nothing is displayed in the template > > any other thoughts? > > On Monday, 3 September 2012 22:53:03 UTC+1, somecallitblues wrote: >> >> Try {{ issue.0}} and

Re: matching a name in url

2012-09-02 Thread Mando
Yup :) I guess I just needed to take a break for a few because after I came back i noticed it and couldn't find my post to reply. Thanks for the reply though. -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web

matching a name in url

2012-09-01 Thread Mando
he URLconf defined in Sampleblog.urls, Django tried these URL patterns, in this order: 1. ^$ [name='home'] 2. ^comment/allcomments/(?P[-\w]+)/all/$ 3. ^comment/comments.html$ [name='comment'] 4. ^static/(?P.*)$ 5. ^admin/doc/ 6. ^admin/ The current URL, comment/mando/all/, didn't