Re: APP DEPLOYMENT

2023-07-20 Thread jeremiah nthiwa
Hello you can deploy your projects on heroku. You can use this YouTube video to help you: https://www.youtube.com/watch?v=XZoTukqekzY On Thu, Jul 20, 2023 at 12:58 PM Abdou KARAMBIZI wrote: > > Hello friends, > > > I want to know where I can upload my django projects for the reason of >

Re: WHAT OTHER REAL TIME MAP CAN I USE IN MY PROJECT ASIDE GOOGLE MAP?

2023-03-25 Thread jeremiah nthiwa
You can use mapbox On Saturday, March 25, 2023 at 4:00:13 PM UTC+3 Michael kosy wrote: > I am on a project that requires me to integrate real time maps into it. I > did that using Google API but whenever I run my server, it always throws > "Request Denied". Does anyone know any other mapping

Re: Django not load CSS

2022-09-02 Thread jeremiah taguta
Did you run collectstatic Warm Regards, Jeremiah On Fri, 02 Sep 2022, 15:15 Rahul, wrote: > Hey there, I really need a help for this. I m try to deploy django > project on live serve as we need to off debug=False. But when Debug is > false it won't load the css of any page. pleas

Re: Study and project partner(s) needed

2020-02-15 Thread Oluwaseun Jeremiah
I will like to join you Here is my whatsapp 2347033819166 On Sat, Feb 15, 2020, 7:10 AM Jack Lin wrote: > Hi there, > I’ve got a new Django project. Do you guys interested to join? > This is my website and this > is a simple Django app

Re: Python Django Training

2020-02-03 Thread Oluwaseun Jeremiah
Also interested On Mon, Feb 3, 2020, 7:27 AM sagar ninave wrote: > i am also interested please add me > whats app : 9657445206 > Email : sagarnin...@gmail.com > > On Mon, Feb 3, 2020 at 11:33 AM Sarvesh singh wrote: > >> i am very passionate to learn django more. >> thanks to you for your

Re: Admin: Unknown fields

2015-09-30 Thread Rolston Jeremiah
Hello Florian Schweikert, Thank you. The commas (',') were the problem. Consider this user-issue closed. Great place to learn Thanks to all. Rjae On Monday, September 28, 2015 at 6:56:42 PM UTC-4, Rolston Jeremiah wrote: > > Hello, > > I am new to Python and Django so please

Re: Admin: Unknown fields

2015-09-29 Thread Rolston Jeremiah
On Monday, September 28, 2015 at 6:56:42 PM UTC-4, Rolston Jeremiah wrote: > > Hello, > > I am new to Python and Django so please bear with me. > > I have created a model(below) and would now like to access > from the admin interface. As per instructions I found on the

Admin: Unknown fields

2015-09-28 Thread Rolston Jeremiah
Hello, I am new to Python and Django so please bear with me. I have created a model(below) and would now like to access from the admin interface. As per instructions I found on the django site (Part 2 tutorial version 1.8.4) model

Re: Password Reset Problem

2011-06-13 Thread Jeremiah Malina
Daniel, reset_password_confirm is my own view method in views.py which I'm using because I have jinja2 as the template engine and it renders templates with a different method Jeremiah On Mon, Jun 13, 2011 at 11:44 AM, Daniel Roseman <dan...@roseman.org.uk>wrote: > On Monday, June 13,

Password Reset Problem

2011-06-13 Thread Jeremiah Malina
://dpaste.com/553684/ Here is my urlconf: http://dpaste.com/553687/ Anyone run into this problem before? Thanks, Jeremiah -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To u

Re: Custom User Profiles + Signals

2011-03-02 Thread Jeremiah
So continuing with this... I got the print-outs to work (I still need to try Stefano's suggestion)... I register a new user (duh6) via my register page and in the output for the dev server, I see: in myproject.cc.models: for user , pr ofile already exists in cc.models: for user , profile

Re: Custom User Profiles + Signals

2011-03-02 Thread Jeremiah
I appreciate all of your feedback! My comments inserted within the message below: > What does cc.models.UserProfile looks like ? class UserProfile(models.Model): user = models.OneToOneField(User) thing = models.CharField(max_length=200) def __unicode__(self):

Custom User Profiles + Signals

2011-03-01 Thread Jeremiah
rProfile() profile.user = sender profile.save() post_save.connect(profile_handler, sender=User) But, what i can't tell is if anything is happening. If I create a new user and then try userinstance.userprofile, I get the expected exception. Could someone plea

Trouble Understanding best approach for using django authentication

2011-02-15 Thread Jeremiah
nform of bad credentials? I was looking at this url as inspiration: http://docs.djangoproject.com/en/1.2/topics/auth/#authentication-in-web-requests Can someone help guide me towards my obvious blunder? (and maybe give this beginner some pointers on custom auth views/forms vs using default?) Thank you,

Re: Generic views problem

2009-07-07 Thread Owen Jeremiah
the tutorial under "Write views that actually do something". -- Andrew On Jul 7, 6:39 am, "Owen Jeremiah" <fowlpla...@gmail.com> wrote: > I'm following the tutorial from django documentation and got to part 4 about > generic views. But I can't get the Poll

Generic views problem

2009-07-07 Thread Owen Jeremiah
I'm following the tutorial from django documentation and got to part 4 about generic views. But I can't get the Poll objects in my dictionary, and the result is 'No polls are available.' I'm running this in Ubuntu 9.04 with Python 2.6 and Django 1.0.2 installed. I would appreciate it if