Re: Problème de création de mon projet (django-admin.py startproject mysite)

2013-09-06 Thread cingusoft
Hi Chenge your folder Now you are in the python/scripts folder that have restrictions To do that you need to add the scripts folder into the variable path and call the django-admin from another folder, for example your user document folder. BlackBerry de movistar, allí donde estés está tu

Re: Getting started with django( the new one is confusing , especially first episode)

2013-07-14 Thread cingusoft
Hi, Why you don't use google If you find vagrant, virtualenv and more you obtain all the informations. You obtain more infos from the projects site than in any mailing group. BlackBerry de movistar, allí donde estés está tu oficin@ -Original Message- From: naufalyah...@gmail.com

Re: A great opportunity for Python-Django Developers

2013-05-06 Thread cingusoft
Hi More infos will be a good idea: For example, where, salary range, if in USA, you help with VISA? Thank's BlackBerry de movistar, allí donde estés está tu oficin@ -Original Message- From: Jitendra Jain Sender: django-users@googlegroups.com Date: Mon, 6 May 2013

Re: Django - Query

2013-05-04 Thread cingusoft
Hi You need to use exceptions to solve this problem try: movieObject=Movie.objects.get(.) except Movie.DoesNotExist: #make the insert query movieObject=Movie() BlackBerry de movistar, allí donde estés está tu oficin@ -Original Message- From: Hélio Miranda

Happy new year

2012-12-31 Thread cingusoft
Happy new year from spain to all django lovers. I wish you a new year with tons of django projects. Cheers Cingusoft BlackBerry de movistar, allí donde estés está tu oficin@ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Re: TemplateView class and process_template_response problem

2012-11-15 Thread cingusoft
No one have experimented this problem? El jueves, 15 de noviembre de 2012 01:47:31 UTC+1, cingusoft escribió: > > Hi All > > i have a middleware that override the response.template_name variable > > class MyMiddleware(object): > > def process_template_respons

TemplateView class and process_template_response problem

2012-11-14 Thread cingusoft
Hi All i have a middleware that override the response.template_name variable class MyMiddleware(object): def process_template_response(self,request, response): response.template_name = ("%s/%s"%("admin",request.template_name)) the view is very easy class

strange problem with dajaxice and javascript

2012-10-22 Thread cingusoft
hi all i have a javascript callback function that return a data json string from a dajaxice view this is the callback function function message_callback(data){ alert(data.id); var id_book = data.id; var uploader = $('#uploader').pluploadQueue({ url :

User Administration

2007-09-07 Thread cingusoft
hi guys my question is: in my application i have a views with a method to insert a new user. the form sebd the informations and i register the user with: us=User.objects.create_user(new_data['username'], new_data['email'],