Re: associate Developers for Google

2023-06-17 Thread JOSEPH OCHELEBE O.
Yes please! On Sat, Jun 17, 2023, 16:47 Peter Benjamin Ani wrote: > > I know it might be a scam normally, but am not dropping any confidential > info > On Sat, 17 Jun 2023 at 16:34, John Ayodele > wrote: > >> Yes Muhammed! >> I also thought of it. I think it's a scam. >> >> On Sat, Jun 17,

ImportError:

2022-12-23 Thread JOSEPH OCHELEBE O.
Am getting this errors bellow when i tried to run my Django project from . import views ImportError: cannot import name 'views' from 'it_training_platform' (C:\Users\Dreams Reality\Desktop\Django-project\it_training_platform\it_training_platform\__init__.py) -- You received this message

Re: Digest for django-users@googlegroups.com - 16 updates in 8 topics

2020-08-22 Thread 'Narendra G O 19BCE1082' via Django users
Hey, My number is mentioned below. Please give me your number I’ll add you in our slack/ Zoho workspace . G O Narendra 19BCE1082 B.Tech CSE VIT University, Chennai +91 80720 14549 > On 22-Aug-2020, at 6:32 PM, django-users@googlegroups.com wrote: > >  > django-users@goog

syntax error while trying to run '$ django-admin startproject mysite' command on command terminal

2020-08-16 Thread Michael O
hello, i cd into the directory by cd\ to start a project and was welcomed by the blinking '...'. i then typed $ $ django-admin startproject mysite and I go syntax Error: invalid syntax. please help by pointing me in the right direction so that I could continue to learn. Thank you. -- You

contrib.auth.forms Bug

2020-06-29 Thread V O
Hello, Please have a look at the following: I was just about to subclass the login form of django.contrib.auth.forms: "class AuthenticationForm(forms.Form)" after dealing a bit with the code I was about to customize the user_is.active check in order to display a customized message at my

using mod_python and django3.02??

2020-05-19 Thread Robert O.
I wrote a django site (django3.02) and want to deploy it using mod_python. Is that even doable/ reasonable?. Do I need to use django version <1.5? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Django begginer

2019-11-26 Thread Elijah O. Raji
What exactly do you want the variable 'project' to do because you did not Include any field with it. -- 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 User Authrntication

2019-11-23 Thread Elijah O. Raji
Hello Chris I'm ready to help kindly put the question through. Or you can contact me view WhatsApp +2349036475407 -- 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

Re: Internship

2019-11-22 Thread Elijah O. Raji
I base in Osun and School in Akure. I can work remotely for the main time. -- 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

Re: Internship

2019-11-22 Thread Elijah O. Raji
No sir. I school in Akure and base I Osun. I could work remotely if you don't mind.. -- 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

Re: Internship

2019-11-22 Thread Elijah O. Raji
LinkedIn https://www.linkedin.com/in/elijah-raji-361a3b153 Git Repo www.github.com/owengrace -- 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

Re: Internship

2019-11-22 Thread Elijah O. Raji
Sir, I'm also interested in the internship as a backend developer. I base in Nigeria. I can work remotely. -- 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

Re: use of migrate command and how to see the tables

2019-07-20 Thread Luis O Sulbaran L
Ejemplo, Registra o actualizar cambios realizados a nuestros modelos: python manage.py makemigrations nombre_aplicación 04146493449--0261-7699778 *https://t.me/luisulbaranleon <https://t.me/luisulbaranleon>* El vie., 19 de jul. de 2019 a la(s) 04:32, Jani Tiainen (rede...@gma

Django use id=models.IntegerField(primary_key=True) as autokey

2019-07-02 Thread P O
Hello, sorry if I am wrong, but I use somethig like: id=models.IntegerField(db_name="some_id", primary_key=True) and Django uses auto-key when I add objects this way: obj = Obj() obj.some_id= 1 obj.save() obj = Obj() obj.some_id= 3 obj.save() In default DB this objects have some_id=1 and

Re: Import circular

2019-06-06 Thread Fabio O da silva
:25 PM 'Alex Mesias Diaz Toro' via Django users < django-users@googlegroups.com> wrote: > Hi Fabio, > Did you solve this problem? > Ty > > El jue., 6 jun. 2019 a las 12:12, Fabio O da silva (< > fabio7silv...@gmail.com>) escribió: > >> urls.py >> >&g

Re: Import circular

2019-06-06 Thread Fabio O da silva
11:47 AM Joe Reitman wrote: > Can you post your views.py, urls.py and template? > > On Thursday, June 6, 2019 at 9:18:22 AM UTC-5, Fabio O da silva wrote: >> >> django.core.exceptions.ImproperlyConfigured: The included URLconf >> 'simplemooc.urls' does not appear to have

Import circular

2019-06-06 Thread Fabio O da silva
django.core.exceptions.ImproperlyConfigured: The included URLconf 'simplemooc.urls' does not appear to have any patterns in it. If you see valid patterns in the file then the issue is probably caused by a circular import. -- You received this message because you are subscribed to the Google

how-to style registration form?

2018-09-09 Thread V O
i currently try to "style" my registration form. in General i get the concept behind it but not at that point: This is how it's intendet to be (and not working): class RegistrationForm(UserCreationForm): > username = forms.CharField(required=True, label='Username', >

Re: How to convert Queryset to String?

2018-01-02 Thread Joshua O. Morales
eryset object make no sense! > > HTH > > Etienne > > Le 2018-01-02 à 04:30, Joshua O. Morales a écrit : > > title = Title.objects.filter(title=title) > print(title) > Is there a way to turn this: > *<QuerySet[]>* > into a string: > *Hello, World*

How to convert Queryset to String?

2018-01-02 Thread Joshua O. Morales
title = Title.objects.filter(title=title) print(title) Is there a way to turn this: ** into a string: *Hello, World* I tried using it as an argument but it gave me an error. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Run manage.py test app_name command from view

2017-11-26 Thread Joshua O. Morales
') return render(request, 'seleniumapp/selenium.html') On Monday, November 27, 2017 at 3:40:58 AM UTC+8, Matemática A3K wrote: > > > > On Sun, Nov 26, 2017 at 11:03 AM, Joshua O. Morales <joshuao@gmail.com > > wrote: > >> What I would like to do is to ex

Run manage.py test app_name command from view

2017-11-26 Thread Joshua O. Morales
What I would like to do is to execute the tests.py by clicking a certain button. I am trying to run the tests.py via views.py, but it gives me a 400 Bad Request error. Is there any other solution? Your help would be very much appreciated. Here's a snippet of the code: from

Setting up PortgreSQL with Djano 1.8

2015-11-09 Thread Ele. O.
Hello Everyone, I tried to insall PostgreSQL with Djngo 1.8 and when running "migrate" to ensure the database is connected and created successfully, i faced a an error regarding the settings and couldn't go further . Below you can fine the steps that was taken at the time of setting up the

Re: Long-term support (LTS)

2014-09-05 Thread Philippe O. Wagner
Thanks Collin! Am Donnerstag, 4. September 2014 19:47:08 UTC+2 schrieb Collin Anderson: > > It hasn't been decided yet, and it's not necessarily 1.7. See the thread > on django-developers. > https://groups.google.com/d/topic/django-developers/KweKHgdIiz0/discussion > -- You received this

Long-term support (LTS)

2014-09-04 Thread Philippe O. Wagner
Hi all, Django 1.4 is the current Long-term support (LTS) release that lasts until end of March 2015. I am curious which is the next LTS release? Is it Django 1.7? Regards, Philippe -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Dynamic image content

2013-09-10 Thread Mark O
Hi folks, Consider the snippet in views.py url = http://127.0.0.1:8806/test request = urllib2.Request ( url ) f = urllib2.urlopen ( request ) result = f.info().getheader ( 'Content-Type' ) if result == "image/jpeg" : print "image/jpeg" s = f.read() t =

Can't open any other view except default "It Worked!" page......

2013-05-04 Thread Daniel O' Shaughnessy
Hi, This worked fine for me with the polls tutorial app but when I tried another app it kept just giving me that page over and over even though I followed the same procedure as the polls app except I used inspectdb Now this page is all I get for anything and I've tried deleting all

broken pipe and javascript xmlhttprequest

2010-04-20 Thread }--o
Hi, could someone explain me why do I get a broken pipe when I call some urls asynchronously from javascript, but works fine for synchronous calls? I use django-piston to create a simple read api that I call using something like var req = new XMLHttpRequest(); req.open('GET',

buildout and fixtures

2010-02-26 Thread }--o
Hi, we are switching to buildout for django development, but have several problems for the moment, mainly related to test running. Previously we've had a django project in all our applications' directory to easily run ./manage.py test myapp from inside Eclipse. now using djangorecipe we can run

how to use an internal (multi-table inherited) OneToOneField

2010-01-11 Thread }--o
Hi, I have the following three models class AbstractModel title = CharField class Quote(AbstractModel) class Project(AbstractModel) Instead of creating a new Project when a Quote gets accepted, I would prefer extending the Quote's abstractproject_prt instance could someone show me how to

DjangoUnicodeDecodeError

2010-01-09 Thread }--o
hi, could someone tell me how to handle this exception? I try to save some data, the data comes from a csv file read via codecs.open(file, 'r') DjangoUnicodeDecodeError: 'utf8' codec can't decode bytes in position 171-176: unsupported Unicode code range. You passed in

how to use the iso-codes package

2009-12-14 Thread }--o
Hi, at http://git.debian.org/?p=iso-codes/iso-codes.git;a=tree;h=8e097c154f64de7d1ffaa7e0b4d9c459298766f2;hb=8e097c154f64de7d1ffaa7e0b4d9c459298766f2 there are po files on hundreds of languages with all the currency, country and language names. to me such a resource would be great to be easily

awkward backward relationships

2009-11-11 Thread }--o
hi, I have the following models: class AbstractTaskOrProject(Model) parent = ForeignKey('AbstractProject') class Meta: abstract = True class AbstractProject(AbstractTaskOrProject) pass class Project(AbstractProject) pass class SubProject(AbstractProject) pass class

django ajax admin components

2009-11-03 Thread }--o
Hi, lately I've written several small snippets to get a smoother admin experience, and I thought about integrating them into the admin app. Is there any interest in these? Are the contrib authors interested in accepting such a contribution? What I did: * change generic relation's content_type,

login_required redirects to a specific url

2009-09-27 Thread }--o
Hi, I'm using the login_required decorator extensively, but have one view where instead of the default landing page ('accounts/login') I would like to redirect it to a specific page. Is there a simple way to do this? Viktor --~--~-~--~~~---~--~~ You received this

Re: Django Forms in HTML 4.01 Strict

2009-01-26 Thread Eduardo O. Padoan
On Mon, Jan 26, 2009 at 4:23 PM, Ty wrote: > > I write HTML 4.01 strict documents and I'm using the django.forms form- > handling library. > > Currently when printing input fields on the template, the output > includes the ending slash: "". > > Is there any way, other

Re: overwrite get_absolute_url /contrib/auth/User

2008-09-16 Thread Eduardo O. Padoan
On Tue, Sep 16, 2008 at 2:59 PM, Sven Richter <[EMAIL PROTECTED]> wrote: > > Hi, > > i am wondering if the "users" path in get_absolute_url > from the User class is hardcoded? > I mean this line: > return "/users/%s/" % urllib.quote(smart_str(self.username)) > > I have the problem that all my

Re: Wiki/CMS app?

2008-08-27 Thread Eduardo O. Padoan
On Tue, Aug 26, 2008 at 12:23 PM, Thomas Guettler <[EMAIL PROTECTED]> wrote: > > Hi, > > I search a Wiki/CMS application to manage a homepage. > > This application should: > - look like a homepage, not like a Wiki > - Content can be HTML and wiki like markup. > - No anonymous editing > -

Re: Command Line Admin

2008-06-30 Thread Eduardo O. Padoan
On Mon, Jun 30, 2008 at 2:31 PM, Jeff Anderson <[EMAIL PROTECTED]> wrote: > I thought of something that might prove useful. > > Anyone that has installed trac has used trac's command line admin interface. > > Something similar for django might be desirable in some situations. > > What I'm

Re: Google App Engine & Django

2008-04-08 Thread Eduardo O. Padoan
On Tue, Apr 8, 2008 at 2:36 PM, ydjango <[EMAIL PROTECTED]> wrote: > > I agree, with no support for Django Models and relational databases > like mysql and postgressSQl, Google Apps Engine usefulness appears to > be limited to more Content Management kind of web application. > It pretty much

Re: New Django Site - tsacomplaints.com

2008-02-07 Thread Eduardo O. Padoan
On Feb 7, 2008 1:19 AM, slartiblartfast <[EMAIL PROTECTED]> wrote: > > hey guys - im about to formally launch a new site done with django > called TSA Complaints (http://www.tsacomplaints.com) > > the site is a response to the hundreds of comments taking the TSA to > task for their well-deserved

Re: New Django Site - tsacomplaints.com

2008-02-07 Thread Eduardo O. Padoan
On Feb 7, 2008 7:28 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Found a debug error here: http://www.tsacomplaints.com/airports/PDX/ > It needs a 404.html. -- http://www.advogato.org/person/eopadoan/ Bookmarks: http://del.icio.us/edcrypt

Re: Re: problem with django admin after update to development version

2008-01-14 Thread patrick . o
I am on a client site on the 11th Jan. I shall respond to your email on my return. Many thanks Patrick O'Connor --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,