Re: how to update data in FK fields another Model

2014-10-17 Thread carlos
+Collin Thank this is working perfects :) Cheers On Thu, Oct 16, 2014 at 3:31 PM, Collin Anderson wrote: > Hi, > > Would this work? > > ModelA.objects.filter(id=self.fk_name_id).update(field_count=F('field_count') > + 1) > > Collin > > -- > You received this message because you are subscribed

how to save in inline form total sum

2014-10-21 Thread carlos
Hi, i need sum inlines field but i no have idea example for more clean, i have 2 models in models.py i have: class ModelA(models.Model): field1 = charfield(...) field2 = integeterfield() . CHOICE_TYPE = ((1,"option1"),(2,"option2"),(3,"option3")) class ModelB(models.Model):

Re: how to save in inline form total sum

2014-10-23 Thread carlos
Hi +Collin the idea is sum all data for example de model is class ModelB(models.Model): choice = models.Integerfield(choices='CHOICE_TYPE') men = models.IntegerField() women = models.IntegerField() total_men = integerField(editable=False) total_women = integerField(editable=Fal

Re: how to save in inline form total sum

2014-10-24 Thread carlos
Ok, i try en modelA create the total, thank for idea Cheers On Fri, Oct 24, 2014 at 6:34 AM, Collin Anderson wrote: > Hello, > > >> ModelB in inline >> choice men women >> option1 6 4 >> option2 1 3 >> optio

pre-populate tabular inline in admin

2014-10-27 Thread carlos
Hi, i need pre-populete tabular inline in admin what is the best ways example class Options(models.Model): name = CharField(...) class ModelA(models.Model): option = FK(Options) field_1 = IntegerField() field_2 = IntegerField() field_3 = CharField() field_4 = booleanFiel

Re: how to save in inline form total sum

2014-10-28 Thread carlos
super(ModelA, self).save(*args, **kwargs) the only problem that is save correct total sum but a hit 2 o 3 time button save in the admin, not first time why? i don't know :( any idea Cheers On Fri, Oct 24, 2014 at 10:25 AM, carlos wrote: > Ok, i try en modelA create the tota

any idea

2014-12-03 Thread carlos
Hello, I need help regarding an idea I need to do several projects in django say than 3 project but one of them will have the table users profile User's other projects could use this table? another idea would be the same db for all projects? but this is optimal or not? example: (Project A): has 30

Re: Libraries for Facebook login

2013-11-22 Thread carlos
try https://github.com/omab/python-social-auth Cheers, On Fri, Nov 22, 2013 at 5:00 PM, coded kid wrote: > Use django_social_auth by Arneb. It rocks! > > > On Friday, 22 November 2013 06:02:30 UTC+1, sk wrote: >> >> I have seen few posts on various Facebook libraries that can be used with >> D

Re: for updating table

2013-12-14 Thread carlos
Hi manually use alter table http://dev.mysql.com/doc/refman/5.0/es/alter-table.html or http://www.postgresql.org/docs/9.1/static/sql-altertable.html Cheers On Sat, Dec 14, 2013 at 4:11 AM, Abhishek ranjan < abhishek.ranjan0...@gmail.com> wrote: > Any new concept to update the table other than

Re: Question about Django, Heroku, and MySQL

2014-01-07 Thread carlos
Hi you check this link https://devcenter.heroku.com/articles/getting-started-with-django maybe help you !! Cheers On Tue, Jan 7, 2014 at 1:17 PM, ET wrote: > Hi, > > I am currently attempting to deploy a basic Django app to Heroku. Ideally, > I would like to use a remote MySQL db instead of He

Re: Django and Bind jQuery Grid to MySql Database using PHP

2014-01-08 Thread carlos
Hi you not need the 3 flies you only need create the proyect and them 1 app this app is the data you need create the views inside one function similar data.php but in python use impor json and them create de index.html similar de index.php so you replace this connect.php == settings.py data.php ==

Re: tutorial part3 : polls didn't match URL patterns

2014-01-10 Thread carlos
change this url(r'^polls/', include('polls.urls')'), for this url(r'^', include('polls.urls')'), On Fri, Jan 10, 2014 at 2:40 AM, AJ NOURI wrote: > I have Python 2.7.3 > > I am new in django and I am following the tutorial 3 at : > https://docs.djangoproject.com/en/1.6/intro/tutorial03/ > >

Re: Django Website Development issue

2014-01-10 Thread carlos
actually yes bluehost support django read this http://blog.ruedaminute.com/2011/01/2011-installation-instructions-for-django-on-bluehost/ maybe help you!! Cheers On Fri, Jan 10, 2014 at 9:08 AM, Vijaya Reddy wrote: > Thanks Tim for quick reply. > > I learned django framework using same tutoria

Re: Can we upgraded from django 1.1.1 to 1.6.1??

2014-01-16 Thread carlos
I thing YES, but you first need sure complete understand django 1.6.1 and replace pieces of code when get error in you application. other thing is you need read all releases notes all version of django: 1.2 1.3 1.4 1.5 1.6 and you discover what is new, what is deprecated and what is removed! in fa

Re: trying to introduce django custom templatetags - some jinja also involve

2014-01-16 Thread carlos
Hi maybe help you this link http://askbot.org/en/questions/ ask your question theres! Cheers On Thu, Jan 16, 2014 at 9:44 AM, django-newb wrote: > I am working on a project where I used a open source framework. Here is > the link for the opensource framework: > https://github.com/ASKBOT/askbot

Re: django websockets

2014-01-16 Thread carlos
Hi maybe this link help you https://www.djangopackages.com/grids/g/websockets/ Cheers On Thu, Jan 16, 2014 at 8:34 PM, Silviu Dicu wrote: > Hello, > > I'm looking to implement websockets with django. > Any hints will be appreciated. > > thanks! > > -silviu > > -- > You received this message be

Re: Error when using apache 2.4.6

2014-01-17 Thread carlos
Hi i remember one time i try use de version apache 2.4.6 with django and virtualhost but never work correctly and change apache for nginx i resolved my problem :) Cheers On Fri, Jan 17, 2014 at 12:38 PM, Jasvir Singh wrote: > On Fri, Jan 17, 2014 at 8:53 PM, Sandeep kaur > wrote: > > that mean

Re: makemessages error. Please help!

2014-02-10 Thread carlos
hi maybe you need configure the setting put path for you locale dirs LOCALE_PATHS = ( os.path.join(SITE_ROOT,'locale'), ) https://docs.djangoproject.com/en/dev/ref/settings/#locale-paths Cheers On Mon, Feb 10, 2014 at 9:44 PM, whitelotus wrote: > > Hi, all, > > To create the message file

Re: I badly speak in English

2014-02-14 Thread carlos
Hi maybe use http://south.readthedocs.org/en/latest/ for migrate your schema! Cheers On Fri, Feb 14, 2014 at 10:50 AM, Віталій Лисенко wrote: > I'm a newbie. I have question: > How to upgrade the database, if introduced in her structural remove > > -- > You received this message because you ar

the best ways export datas for my project

2014-03-26 Thread carlos
Hi all, What is de best ways for export data? for example i have 3 apps, but apps 1 and 2 have relation with apps 1 and i want download data in only one file all data APP1 class Model1(...): field1 = field2 = ... -- APP2 class Model2(): fk = (

Re: How to filter queryset object list with matching parameter?

2014-04-10 Thread carlos
hi, maybe you filter you queryset user_list = Model.objects.filter(user__name=user.name ).filter(other__field=user.email) Cheers On Thu, Apr 10, 2014 at 9:44 AM, nobody wrote: > Hi, > > How can I filter an item from the queryset object list if the name is > matching? The following won't work.

Re: Opinion needed for a BookMarker project - Regarding CSRF token

2014-05-12 Thread carlos
Hi you read this part of the exempt, if you not need csrf https://docs.djangoproject.com/en/dev/ref/contrib/csrf/#django.views.decorators.csrf.csrf_exempt cheers On Mon, May 12, 2014 at 2:01 PM, Aseem Bansal wrote: > Hi Sanjay > > I think you misunderstood a bit. The JS that I am talking about

Re: how can i get all values of a field

2014-05-23 Thread carlos
Hi, you read the documentation? https://docs.djangoproject.com/en/1.6/ref/models/querysets/ On Fri, May 23, 2014 at 6:36 AM, wrote: > In Models i declare Novel: name,category > table structure: > --- > id| name |category >

Re: Tutorial to deploy (with install instructions) = django+gunicorn+nginx

2014-05-23 Thread carlos
Hi, Digital Ocean have many tutorial begginner : https://www.digitalocean.com/community/articles/how-to-deploy-a-local-django-app-to-a-vps advanced: https://www.digitalocean.com/community/articles/how-to-install-and-configure-django-with-postgres-nginx-and-gunicorn Cheers On Fri, May 23, 2014 at

Re: virtualenv help needed

2014-05-28 Thread carlos
Hi, when install virtualenv you need create yours enviroments then you need install all application you need example: $virtualenv django14 #create your enviroments $source django14/bin/activate #activate your enviroments $pip install django==1.4.5 #install all you need application o third party

Re: 1.6.5 as a zip for download?

2014-05-28 Thread carlos
Hi @NeilWalker maybe you need install 7zip http://www.7-zip.org/ in yours winbug Cheers On Wed, May 28, 2014 at 11:09 AM, Neil Walker wrote: > Thanks, I couldn't figure out how to get a zip from github :) > > Might be a good idea to have a zip version at the website alongside the > tar.gz for s

Re: OperationalError happening after giving authorization to the class based view

2014-06-06 Thread carlos
Hi, 2 choice 1. erase de database y create again the migration: $rm database && rm -r addressbook/migrations $./manage.py schemamigration addressbook --initial $./manage.py migrate 2. create manually fields owner_id enter terminal or console i see you use sqlite3 i recomended install this addon

Re: Any position for Django/Python Developer?

2014-06-18 Thread carlos
Hi or maybe look for odesk.com and similar website for freelancer On Wed, Jun 18, 2014 at 10:31 AM, Huy T wrote: > If you want to relocate why not select some target cities. > > Otherwise why not search dice.com (job board) and google perhaps. > > On Jun 18, 2014, at 11:08 AM, Kannan wrote: >

Re: Chat application

2014-06-18 Thread carlos
Hi, maybe not all with django, maybe you need learn gevent http://www.gevent.org/ socket.io http://socket.io/ and here is example for a chat with redis and django + gevent + socketio etc. https://github.com/rlr/django-gevent-socketio-redis-chat-example Cheers On Wed, Jun 18, 2014 at 4:46 PM, Pe

Re: Copied django project to shared host from repo - can't import settings

2014-06-24 Thread carlos
Hi, maybe show the content mysite.fcgi and .htaccess, the error say not exist your project mysite maybe the path is not good in mysite.fcgi! Cheers On Tue, Jun 24, 2014 at 3:39 PM, Lee wrote: > Hello, > > I setup Django successfully on my shared Bluehost account following the > tutorial below:

Re: Copied django project to shared host from repo - can't import settings

2014-06-25 Thread carlos
ok i make different configuration #!/home5/myorg/.virtualenvs/mydjango/bin/python import sys, os # Add a custom Python path. sys.path.insert(0, "/home//projects/") sys.path.insert(0, "/home//projects/yourproyect") from flup.server.fcgi import WSGIServer os.environ['DJANGO_SETTINGS_MODULE'] = '.s

Re: Syntax highlighting using vim

2014-06-27 Thread carlos
maybe read this https://code.djangoproject.com/wiki/UsingVimWithDjango or install this plugin https://github.com/yodiaditya/vim-pydjango cheers On Fri, Jun 27, 2014 at 4:04 AM, Christopher Schenk < christopher.sch...@gmail.com> wrote: > >

Re: Require an inventory model tutorial in Django

2017-12-01 Thread carlos
il&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving ema

Re: Failed to create a new django project

2017-12-07 Thread carlos
raise TypeError, "pop expected at most 2 arguments, got "\ > > > > > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an >

Re: Admin adding images to blog via the admin section

2017-12-23 Thread carlos
django-users/95e25a48-45ff-4634-91f6-e82b7b17c2f7%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "

Re: Issue with Python 3.6 and Django 2.0 App Deployment on Shared Hosting

2017-12-25 Thread carlos
/d/ > msgid/django-users/d38290f8-dd4e-4038-a958-9fed5b32fa34%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/d38290f8-dd4e-4038-a958-9fed5b32fa34%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/o

Re: putting together a simple calendar of events in Django

2018-01-30 Thread carlos
Qf8dgA%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CAF%2BxBDVW-CvXVpTT8bqmmaS_OC5%2Bx%3DDB_RtRswnRs3nbQf8dgA%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha

Re: django-vue

2018-01-31 Thread carlos
google.com/d/msgid/django-users/93eb10cd-9a6a-4095-93ef-d8ede85bc0ce%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message because you are subscribed to the

Re: Django

2018-02-01 Thread carlos
om/d/ > msgid/django-users/0e088428-2daa-4ce1-b089-95e30d129948%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/0e088428-2daa-4ce1-b089-95e30d129948%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/

Re: Django

2018-02-01 Thread carlos
-users. >>> To view this discussion on the web visit https://groups.google.com/d/ms >>> gid/django-users/0e088428-2daa-4ce1-b089-95e30d129948%40googlegroups.com >>> <https://groups.google.com/d/msgid/django-users/0e088428-2daa-4ce1-b089-95e30d129948%40googlegroups.com?ut

Re: Trying to deploy Django 2.0.2 (DigitalOcean)

2018-02-07 Thread carlos
to django-users@googlegroups.com. > Visit this group at https://groups.google.com/group/django-users. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/django-users/d10625a1-f380-4ab2-8ec0-efa25aaea5b6%40googlegroups.com > <https://groups.go

Re: How to fetch data from sql server and display on django web pages

2018-02-11 Thread carlos
oup at https://groups.google.com/group/django-users. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/django-users/AM5P193MB00835F3E9901536A3FF319C28CF00%40AM5P193MB0083. > EURP193.PROD.OUTLOOK.COM > <https://groups.google.com/d/msgid/django-users/AM5P193MB

Re: soy nuevo como inicio Django para desarollar con oracle

2018-02-24 Thread carlos
o-users. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/django-users/CAJ8iCyMDS93Z84DamCvPy8Vyw70jPdLCQ8oma%3DahsS4hBJ6Q9A% > 40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CAJ8iCyMDS93Z84DamCvPy8Vyw70jPdLCQ8oma%3DahsS4hBJ6Q9A%

Re: autocomplete

2018-02-26 Thread carlos
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 https://groups.google.com/group/django-users. > To view this discussion on the web visit https://groups.google.

Re: New Question How to Let a user upload a Video and then show the content on Templates in Django?

2018-03-12 Thread carlos
_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving ema

Re: Display Many to Many Field in Django admin site

2018-04-03 Thread carlos
uot; group. > To unsubscribe from 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 https://groups.google.com/group/django-users. > To vi

Re: A calendar booking app

2018-06-05 Thread carlos
t; To post to this group, send email to django-users@googlegroups.com. > Visit this group at https://groups.google.com/group/django-users. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/django-users/CAPZHCY6bO9hKhQNzHuDz_-L6JiWFfCCk6hJr9uxbMhy9% > 2BWvZ

how can I reference a field from one model to another model

2019-01-23 Thread carlos
elDad) another_number = models.IntegerField() def make_proces(self): return self.another_number * ModelChild1.number #this is my question how can I send a call number within the function (make_proces ) of ModelChild2 is posible -- att. Carlos Rocha -- You received this message be

Re: how can I reference a field from one model to another model

2019-01-25 Thread carlos
t > by user > > On Fri, 25 Jan 2019, 17:29 NAveeN Kumar Reddy < > knaveenkumarredd...@gmail.com wrote: > > You can use this where you want you to link tables with foreign key > > models.ForeignKey(Model_Name,on_delete=models.CASCADE) > > That's it both tables

Re: urls con clases

2019-02-19 Thread carlos
42a1294-cf06-471f-bc13-ee492482a361%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django

initial data inlineAdmin

2019-03-21 Thread carlos
[] | [] | [] i use django 1.11.18, python3.6 What is the best way to do this, some link to read to guide me in the right way Cheers -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe f

Re: There's any django app for calendar?

2019-03-28 Thread carlos
oups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at https://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CANfVfcCgKnG7Tu2H53yS8vhH0b0ns7vKM4x5epG1CKz-%

Re: How is the best way to separate costumers on my django site?

2019-04-05 Thread carlos
oogle.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CAH-SnCCe%2BfZ5YKXm4hMSjcrS8ojBUKbu6eovRHpiBpHhByQ7Tw%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CAH-SnCCe%2BfZ5YKXm4hMSjcrS8ojBUKbu6eovRHpiBp

Re: Django Builtin Admin

2019-04-07 Thread carlos
8270-1a19e153b417%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/d8b9ad14-d402-4e27-8270-1a19e153b417%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha --

Re: Email Django app.

2019-05-10 Thread carlos
Q50OWr96cppMMZgu6%2Bt_aWwuH1wQ_8H9PfQoGg%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CAFhdOCMwSX9eQ50OWr96cppMMZgu6%2Bt_aWwuH1wQ_8H9PfQoGg%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. &

Re: How to Implement Cascading Dependent Drop Down List using Foreign Key Relationship in Django Admin GUI

2019-05-16 Thread carlos
"Django users" group. > To unsubscribe from 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 https://groups.google.com/group

Re: No puedo generar qr en django

2019-05-20 Thread carlos
id/django-users/1a432774-6b38-409a-bab2-2981ae5bf356%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/1a432774-6b38-409a-bab2-2981ae5bf356%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- a

annotate sum many record

2019-06-02 Thread carlos
How could I do that? thank for yours helps -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegr

Re: Social media management

2019-06-25 Thread carlos
/44131d6f-3280-4260-840f-cbc41451e852%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django users&

any idea for get_absolute_url in m2m categories

2017-02-19 Thread carlos
ager' object has no attribute 'slug' what is the best way to do this? any idea? Cheers -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop recei

Re: any idea for get_absolute_url in m2m categories

2017-02-20 Thread carlos
AM, Melvyn Sopacua wrote: > On Sunday 19 February 2017 23:00:54 carlos wrote: > > > > > class Category(...): > > > name = CharField() > > > slug = SlugField(.) > > > > > > class MyModel(modesl.Model): > > > post = mod

Re: any idea for get_absolute_url in m2m categories

2017-02-20 Thread carlos
thank Melvyn :) i understands right now! On Mon, Feb 20, 2017 at 9:24 AM, Melvyn Sopacua wrote: > On Monday 20 February 2017 08:39:07 carlos wrote: > > > Hi, Melvyn yes i use similar but for the question is > > > the best way? > > > > > > def get_absolut

Advice: django deploy vps error 502

2017-02-28 Thread carlos
test the web site throws the error 502 ngixn I would appreciate it if someone gave me an idea or advice to configure better when there is high traffic or are doing ab test or another benchmarking test cheers -- att. Carlos Rocha -- You received this message because you are subscribed to the

Re: Advice: django deploy vps error 502

2017-03-01 Thread carlos
ntually killed, but I don't really know. Do you have > DEBUG = False? Does uwsgi write something in its log? Does the system write > something in the syslog? > > Regards, > > Antonis > > Antonis Christofideshttp://djangodeployment.com > > > On 02/28/2017

Re: Advice: django deploy vps error 502

2017-03-02 Thread carlos
ears ago > was that every once in a while I was having a different problem with uwsgi, > which was taking me hours to solve, largely because of insufficient > documentation. After I switched to gunicorn I never looked back. > > Regards, > > Antonis > > Antonis Christofideshttp:

Advice: count hits/pageview for high traffic website

2017-03-07 Thread carlos
Hi, i try used django-hitcount but really not for website high traffic any advice for count visits/hits page for 60k or 100k traffic for day thank any idea, link or whatever helps -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django

Re: Advice: count hits/pageview for high traffic website

2017-03-07 Thread carlos
app like django-hitcount but for site very high traffic Or some idea to do that? cheers On Tue, Mar 7, 2017 at 6:04 PM, Daniel Bess wrote: > Hi Carlos, > > You email is a little unclear. Are you suggesting I should not use Django > for a web backend? > > Let me know! >

Re: Advice: count hits/pageview for high traffic website

2017-03-08 Thread carlos
hy not Google Analytics? > > On 3/8/17, ludovic coues wrote: > > Have you looked at an analytics solution like piwik ? > > > > 2017-03-08 6:40 GMT+01:00 carlos : > >> Daniel, no i say i used django for a website with high traffic maybe 70k > >> per > >&

migrations error

2017-03-20 Thread carlos
Hi all, When I install my first third party application in my model I create my initial migration and everything okay, after that probe I uninstall that application and create another new migration number 2, but it throws me an error because there is no longer the application in both the Setting a

Re: migrations error

2017-03-20 Thread carlos
s.com > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to dja

Re: php

2017-05-05 Thread carlos
tm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: Displaying Categories / Subcategories (Tango with Django Example)

2017-05-12 Thread carlos
scussion on the web visit https://groups.google.com/d/ > msgid/django-users/96558026-ac69-4c7c-bb98-cee43dddee82%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/96558026-ac69-4c7c-bb98-cee43dddee82%40googlegroups.com?utm_medium=email&utm_source=footer> > . >

Re: Django MultipleChoiceField

2017-05-16 Thread carlos
ooglegroups.com > <https://groups.google.com/d/msgid/django-users/0c6cd431-5b78-4862-b24b-305504cd695e%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this

Re: Django MultipleChoiceField and Multiple Checkbox

2017-05-16 Thread carlos
roups.com > <https://groups.google.com/d/msgid/django-users/69633374-93f8-4828-aad7-e242bd5831e7%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message beca

formfield_for_manytomany exclude

2017-05-29 Thread carlos
Hello, I am trying to exclude several categories from a m2m, but when I see the widget in my form all still appear, I put the code that I execute when I load the form, the id that I place are the categories that I do not want to appear def formfield_for_manytomany(self, db_field, request, **kwargs

Re: Please help two dependent list check boxes

2017-05-29 Thread carlos
https://groups.google.com/d/ > msgid/django-users/6ce2a875-fe14-b76d-f8fe-4cd81b4b0d70%40gmail.com > <https://groups.google.com/d/msgid/django-users/6ce2a875-fe14-b76d-f8fe-4cd81b4b0d70%40gmail.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https:

Re: How show id

2017-07-10 Thread carlos
t; To unsubscribe from 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 https://groups.google.com/group/django-users. > To view this discussion

Re: Create Mobile App from Django Template

2017-07-18 Thread carlos
go-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at https://groups.google.com/group/django-users. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/django-users/1FE3BF0B-F606-4EAE-88E0-7

Re: Would old version of mysql caused performance issue in Django

2017-07-18 Thread carlos
_source=footer> >> . >> >> For more options, visit https://groups.google.com/d/optout. >> > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails

The best way to use AMP of google with Django

2017-07-24 Thread carlos
1.11.x, any idea manual used thanx -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To po

Re: django-leaflet installation exception

2017-09-08 Thread carlos
//groups.google.com/d/msgid/django-users/b8ac0a47-6426-4f29-9e88-9efc2bd7403e%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message because you are subscribed to the Google G

Re: Django Video Conferencing-Reg

2020-04-06 Thread carlos
o-users/CAFJPbobo8ynEQ%2BiLj%3DVW_XStcvWECe0r4O6yo0faVb%3DTUATnDQ%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CAFJPbobo8ynEQ%2BiLj%3DVW_XStcvWECe0r4O6yo0faVb%3DTUATnDQ%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- att. Carlos Rocha -- You rece

problem with feed

2020-04-23 Thread carlos
Hi, i have a website with SSL certificate but when create feed syndication the link protocol always is http why? how to change to https? in site_id a put only www.mydomain.com in syndication say http://www.mydomain.com/news/ any idea o link to find the problem in my setting put this SECURE_PROX

Re: problem with feed

2020-04-24 Thread carlos
Is a VPS Digital Ocean On Fri, Apr 24, 2020 at 1:28 AM John McClain wrote: > often you have to manage configurations on the host as well. What configs > have you set in the host account > > On Fri, 24 Apr 2020 at 06:09, carlos wrote: > >> Hi, i have a website with SSL ce

Re: Python 3.8 Installed, yet Django 1.11 is Automatically Being Installed on Mac

2020-06-08 Thread carlos
s from it, send an > email to django-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CAHM%2BSVrKWB%2Bsw0NwWOW9oqHf%2B3K%3DFNhvzA-0-izPtrkmsc3iMA%40mail.gmail.com > <https://groups.google.com/d/msgid/djan

Re: Django 1.11 security backports

2020-06-09 Thread carlos
To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/04422a43-c652-496a-b932-7f08f49f2915o%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/04422a43-c652-496a-b932-7f08f49f2915o%40googlegroups.com?utm_medium=email&utm_source=footer&

Re: Work in django!!

2020-06-16 Thread carlos
ogle.com/d/msgid/django-users/CAK5m3158B8nSkjKRrY1KGZ7p3G2MY%2Be-Pkv9kqYDXBbZ3BV-8A%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CAK5m3158B8nSkjKRrY1KGZ7p3G2MY%2Be-Pkv9kqYDXBbZ3BV-8A%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- att. Carlos Rocha --

Re: Need Covid 19 Database for Experiments

2020-07-02 Thread carlos
egroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CALvPq4LpBxANvRc_JSnEFXdyi7yiNeqrUYFtkW9bofMVTufHVg%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CALvPq4LpBxANvRc_JSnEFXdyi7yiNeqrUYFtkW9bofMVTufHVg%40mail.gmail

Performance queries helps

2020-07-10 Thread carlos
Hi, i need any advice for performance queries i have a model name Post post have m2m categories and fk author the index page show 7 categories in separated row i try performance this example queryset_global = Post.objects.filter(status__contains='publish').prefetch_related('category').select_relat

How to Cache a function in Django?

2020-07-13 Thread carlos
Hi, i need cache a function in Django example def function1(request): some code ... return dict i know cache_page(50 * 10) but this functions in not a page is only a function return a dictionary. Cheers -- You received this message because you are subscribed to the Google Groups "Djan

Re: How to Cache a function in Django?

2020-07-14 Thread carlos
Thank! On Mon, Jul 13, 2020 at 10:24 AM Kasper Laudrup wrote: > Hi Carlos, > > On 13/07/2020 17.58, carlos wrote: > > Hi, i need cache a function in Django > > example > > > > def function1(request): > > some code ... > > return dic

Re: Performance queries helps

2020-07-15 Thread carlos
7 in newscat7 %} > {{news7.name <http://news.name/>}} > {{news7.date|date:'Y-m-d'}} > {{news7.body|safe|truncatewords:20}} > {{news7.category.all.0}} >Read More > {% endfor %} > > > > On Sat, Jul 11, 2020 at 10:46 AM carlos wrote: > >

Re: Two factor authentication using OTP

2020-07-16 Thread carlos
p receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/9357377a-13c6-c4bc-7328-70179ce99d15%40stacktrace.dk > . > -- att. Carlos Rocha -- You received thi

Re: Campo auto incremento

2020-07-22 Thread carlos
iving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/d020d60b-4dde-4e09-861a-cac5c777fe33o%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/d020d

Re: chatbot application

2020-08-14 Thread carlos
ps.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CAOWRdhBxm5VZ9H53vXJthENgQWFiLoaGC_Tp8gw7PZiNxSmjQA%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CAOWRdhBxm5VZ9H53vXJthENgQWFiLoaGC_Tp8gw7PZiNxSmjQA%40mail.gmail.com?ut

django widget radio button error save is not touch

2020-09-06 Thread carlos
Hi, i have a problem when save a field in radio button in my models have this CHOICES_OPTIONS = ( (1, 'Yes'), (2, 'No'), ) class MyModels(...): myfield = models.IntegerField(choices=CHOICES_OPTIONS, null=True, blank=True) class MyModelsForm() myfield = forms.ChoiceField(widget=form

Re: Interfaz administrativa, login con SSH

2018-06-10 Thread carlos
-15d9d098c514%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe fr

Re: django.contrib.admin

2018-06-29 Thread carlos
43cb-9849-7af5ef864f04%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this message because you are subscribed to the Google Groups "Django users" group. To un

Re: Django dynamic Database

2018-08-03 Thread carlos
What ? Need more information when you say dynamic database El vie., 3 de ago. de 2018 5:36 a. m., Cheran Rj escribió: > Hi! how to create dynamic database for each user or organisation > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To

Re: MODO DEBUG = TRUE (problema a salir del modo de debu)

2018-08-21 Thread carlos
googlegroups.com > <https://groups.google.com/d/msgid/django-users/8e7f2ee5-7129-4ab4-8385-e1a6ea82c0a0%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- att. Carlos Rocha -- You received this messag

<    1   2   3   4   5   6   >