Re: Looking for Django developers to work on a new and an existing project with our team

2020-04-06 Thread Julio Henrique Oliveira
Hi, I'd like to know more about this job. I am available. Best Regards -- *Júlio Henrique de OliveiraItapeva - SP* Em dom., 29 de mar. de 2020 às 14:57, Lax Nayak escreveu: > I am looking for a django developer who has expertise in building >

Re: Bulk SMS website using django

2020-02-22 Thread Julio Henrique Oliveira
Hello, I have experience with this kind of work. Let me known if I can help you. Best regards. Júlio. On Fri, 21 Feb 2020 at 04:52 Isaac Imafidon wrote: > I have a project to develop a bulk sms website using django, but i have > not develop this kind of website before. Also the client want

Re: psycopg2

2014-07-25 Thread Henrique Oliveira
Had to do python3.4-dev. " > > Perhaps you need to do the same thing... > > > > On 25 July 2014 10:29, Henrique Oliveira <henriqueollive...@gmail.com> > wrote: > >> Hi Mario, >> >> I already installed python-dev >> On Jul 24, 2014

Re: psycopg2

2014-07-24 Thread Henrique Oliveira
Hi Mario, I already installed python-dev On Jul 24, 2014 9:11 PM, "Mario Gudelj" <mario.gud...@gmail.com> wrote: > Install this first: > > sudo apt-get install python-dev > > Then try installing that package again. > > > On 25 July 2014 09:55, Henriq

psycopg2

2014-07-24 Thread Henrique Oliveira
*Hi All,I am trying to install psycopg2 but I am getting this error:*I already installed python3-dev and libpq-devAny idea?* Downloading/unpacking psycopg2 Downloading psycopg2-2.5.3.tar.gz (690kB): 690kB downloaded Running setup.py (path:/opt/d/build/psycopg2/setup.py) egg_info for

django + Mysql connector

2014-07-21 Thread Henrique Oliveira
Hi there, I am getting this error after hours: File "/opt/d/lib/python3.4/site-packages/django/contrib/sites/models.py", line 45, in get_current current_site = SITE_CACHE[sid] KeyError: 1 During handling of the above exception, another exception occurred: Traceback (most recent call

Re: Django 1.6 + Mysql

2014-07-05 Thread Henrique Oliveira
July 6, 2014 8:03:56 AM UTC+8, Henrique Oliveira wrote: >> >> hi there, >> >> I am getting this error when using Mysql connector: >> >> File >> "/opt/b360/lib/python3.4/site-packages/django/core/handlers/base.py", line >> 114

Django 1.6 + Mysql

2014-07-05 Thread Henrique Oliveira
hi there, I am getting this error when using Mysql connector: File "/opt/b360/lib/python3.4/site-packages/django/core/handlers/base.py", line 114, in get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File

Update user and user profile same form

2014-06-28 Thread Henrique Oliveira
Hi Guys, I have this model: class Member(models.Model): user = models.OneToOneField(User, primary_key=True) date_of_birth = models.DateField('Date of Birth') class Meta: db_table = 'member' def member_email(self): return self.user.email def

Django wizard with one to many

2014-06-24 Thread Henrique Oliveira
Hi there, I need to create a wizard that has an one-to-many relationship on step 2. These are my models: class Ticket(models.Model): user = models.ForeignKey(User) modality = models.CharField(max_length=3) drawing = models.ForeignKey(Drawing) type =

Re: __unicode__() addition not working in basic poll application.

2014-03-27 Thread Matheus Henrique Oliveira
m this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web vis

Re: Gunicor + Postgres + Python 3

2014-03-10 Thread Henrique Oliveira
The request do not reach the view On Monday, March 10, 2014 1:14:18 AM UTC-3, Henrique Oliveira wrote: > > Hi there, > > I have set Django + gunicorn + python 3 in a production env, but I am > gettin critical timeout on simple request(home). > Any Ideas? > > 14-03-0

Re: Gunicor + Postgres + Python 3

2014-03-10 Thread Henrique Oliveira
Henrique, > > Can you send the code for the view that generates the page? > > -Nick > > > On Sun, Mar 9, 2014 at 9:14 PM, Henrique Oliveira > <henrique...@gmail.com > > wrote: > >> Hi there, >> >> I have set Django + gunicorn + python 3 in a prod

Gunicor + Postgres + Python 3

2014-03-09 Thread Henrique Oliveira
Hi there, I have set Django + gunicorn + python 3 in a production env, but I am gettin critical timeout on simple request(home). Any Ideas? 14-03-09 23:11:21 [14029] [INFO] Listening at: http://127.0.0.1:8001 (14029) 2014-03-09 23:11:21 [14029] [INFO] Using worker: sync 2014-03-09 23:11:21

Django multiple model from one form submit

2014-02-19 Thread Henrique Oliveira
Hi there, I have the model below: class Ticket(models.Model): REAL = 'R' FREE = 'F' TYPES = ( (REAL, 'Real'), (FREE, 'Free'), ) amount = models.DecimalField() user = models.ForeignKey(User) class Pick(models.Model): ticket_id =

Re: Custom User

2014-02-02 Thread Henrique Oliveira
rProfile. > > Does that make sense? > > Yours, > Russ Magee %-) > > > On Mon, Feb 3, 2014 at 4:18 AM, Henrique Oliveira > <henrique...@gmail.com > > wrote: > >> Hi Timothy, >> >> I see it have officially deprecated the use of user profiles at

Re: Custom User

2014-02-02 Thread Henrique Oliveira
; > > > On Sun, Feb 2, 2014 at 3:27 PM, Henrique Oliveira > <henrique...@gmail.com > > wrote: > >> Hi guys, >> >> I am building a gambling website thas has 2 types of users: >> >> Admin user: An user that manage that manages the website, it i

Custom User

2014-02-02 Thread Henrique Oliveira
Hi guys, I am building a gambling website thas has 2 types of users: Admin user: An user that manage that manages the website, it is a staff user(As already is done in Django), this user cannot register by yourself. Member user: It is an user that interact with the website, it has an account,