Python Django CRM Course - Adding leads - Part 2

  Рет қаралды 15,995

Code With Stein

Code With Stein

Күн бұрын

Пікірлер: 48
@madusan1
@madusan1 2 жыл бұрын
On the leads_list.html, move the bg-gray-100 to the empty quotes to the right in the cycle. The first quotes should now be empty quotes. This makes the even lines grayed. The odd lines will be white. You already have the header having a bg
@CodeWithStein
@CodeWithStein 2 жыл бұрын
Nice, great tip 👍🏻
@jonathanlugo4460
@jonathanlugo4460 8 ай бұрын
Greetings! Hope you're doing great. Can you paste an example?
@BilalKhelif-b7y
@BilalKhelif-b7y Жыл бұрын
Thank you for this series 🙏
@CodeWithStein
@CodeWithStein Жыл бұрын
You’re welcome
@BilalKhelif-b7y
@BilalKhelif-b7y Жыл бұрын
I hope you add other projects like this for example a school management with all its activities: management + education
@techwithbak
@techwithbak 3 ай бұрын
I liked your coding skills from down to up ☝️
@CodeWithStein
@CodeWithStein 3 ай бұрын
Thanks 😄
@madusan1
@madusan1 2 жыл бұрын
I made the footer a sticky footer by adding 'fixed inset-x-0 bottom-0' to the footer class. I also made the footer narrower by preference by changing py-8 to py-4. Picky, I know but gives more screen space.
@CodeWithStein
@CodeWithStein 2 жыл бұрын
Nice! Love it when my subs goes beyond what I’m teaching and making things better 😁
@briangreenberg153
@briangreenberg153 10 ай бұрын
I found that quite handy. Thanks for the tip!
@emmanuelsofolawe9704
@emmanuelsofolawe9704 Жыл бұрын
Thanks, the tutorial is well explained in a simple format, but I am having challenges updating the forms for lead and clients.
@CodeWithStein
@CodeWithStein Жыл бұрын
Hey, thanks :-D Hmm, are there any errors?
@emmanuelsofolawe9704
@emmanuelsofolawe9704 Жыл бұрын
@@CodeWithStein No errors , after submission to goes to the else block that is returning me to the initial page
@CodeWithStein
@CodeWithStein Жыл бұрын
Hmm, that is weird. It sounds like you have a typo or similar in the code. Have you compared it one more time with my code?
@emmanuelsofolawe9704
@emmanuelsofolawe9704 Жыл бұрын
Is there a link where I can get the source code for comparison
@CodeWithStein
@CodeWithStein Жыл бұрын
I dont have it at my mobile (using it now). But check the description for the video or just search me up on GitHub (steinovehelset) and find the series there 👍🏻
@timbryant9869
@timbryant9869 2 жыл бұрын
Stein, first let me start by thanking you for putting this together. This was perfect timing, as I was in need of making my own crm. Nothing I could find available was suitable for my business. I have been following along since part one and everything has been really smooth. I have ran into an issue at 19 :18 in this video. When you created the new lead on the front-end, I followed the steps, but I went back to the admin area and noticed the new lead didn't get committed to the database. I can create a new lead from the admin area with no issues. I was hoping you might be able to provide some insight. I look forward to working my way through the rest of this series. Thank you for sharing this project.
@CodeWithStein
@CodeWithStein 2 жыл бұрын
Hey, Thanks for the feedback ☺️ it is a bit hard to explain here in the comments since it will require some code. Are there any errors in the stuff you made so far?
@timbryant9869
@timbryant9869 2 жыл бұрын
@@CodeWithStein There are no errors that I can see. After I create a new lead in the front-end, I get redirected as expected back to the dashboard. I tried looking at the code on your github, but with all the refactoring, I can't tell if i've just made a typo somewhere.
@timbryant9869
@timbryant9869 2 жыл бұрын
@@CodeWithStein Thank you for the reply. I found my issue finally. It was a typo, that I just wasn't catching. Now I can continue on..lol
@Greygasm
@Greygasm Жыл бұрын
@@timbryant9869 currently having this problem lol. I also get no errors, but adding leads doesn't commit to the database.
@Andreapython
@Andreapython Жыл бұрын
@@timbryant9869 Hi, i am not getting redirect to dashboard. Send me to dashboard/leads. some can help me with this issue
@austinhomolka
@austinhomolka 2 жыл бұрын
Great video! Thank you again!
@CodeWithStein
@CodeWithStein 2 жыл бұрын
Thanks 😁😁
@viksir4278
@viksir4278 2 жыл бұрын
Hi Stein, thanks again for an informative and interesting tutorial. one question about the architecture of the project: you are using function-based-view not a class_based_ones - your habit or for educational purposes? Looking forward to your parts to come. Have a Nice Day!
@CodeWithStein
@CodeWithStein 2 жыл бұрын
You’re welcome 😁 It is a mix. First of all, I love FBV. And they are easier to teach since it is so clear how they work. With CBV, a lot of magic is happening in the background. And that can be confusing for many people ☺️
@mrmoneybagz
@mrmoneybagz Жыл бұрын
Learning to code is like learning to speak a new language. If you move to a foreign country that doesn't speak your language, and you have to be communicating with the locals on a daily basis, and you start practicing the basics of their language (Local greetings, names of commodities like sugar, butter), a few years down the line, you will find yourself speaking the local language fluently. It just takes time and commitment. You will make a lot of grammatical errors when start out, you will not understand some more complex sentence constructions at the beginning, but with time, it will all start making sense.
@CodeWithStein
@CodeWithStein Жыл бұрын
Yes, you are really right about that ☺️ great words 😁
@eslamnasr603
@eslamnasr603 2 жыл бұрын
awesome 👌
@CodeWithStein
@CodeWithStein 2 жыл бұрын
Thanks 😁
@sebastiangallego4186
@sebastiangallego4186 Жыл бұрын
This video was great o should I say "Nice"?
@CodeWithStein
@CodeWithStein Жыл бұрын
Haha, Thanks 😁
@madusan1
@madusan1 2 жыл бұрын
Deleting the lead is dangerous. It is much better to mark a book field as a deleted field or inactive. This ensures history is kept. Reports complete and ensures a recovery path for any accidental removals. A dB command can be used at a later date if the record should be removed but this is done by admins or backend staff which would be rare. They records could be moved to another table for historical data. Prevents recalling cold calling lead again. Of course, you would just filter the view to not show anything marked as deleted.
@CodeWithStein
@CodeWithStein 2 жыл бұрын
This is absolutely a good idea! Maybe i can implement this later in the series ☺️
@ibrahimoglu
@ibrahimoglu 2 жыл бұрын
👍
@CodeWithStein
@CodeWithStein 2 жыл бұрын
☺️
@AliHassan-wc6nb
@AliHassan-wc6nb 2 жыл бұрын
Hi Stein, how many parts left?
@CodeWithStein
@CodeWithStein 2 жыл бұрын
I haven’t planned it yet, but probably many parts 😁
@ahmadumar6210
@ahmadumar6210 2 жыл бұрын
@@CodeWithStein Dear Stein thanks for all of your efforts, your videos are really helpful and inspiring
@AliHassan-wc6nb
@AliHassan-wc6nb 2 жыл бұрын
@@CodeWithStein hahahaha, ok
@CodeWithStein
@CodeWithStein 2 жыл бұрын
You’re welcome 😁
@abdullahkhalid4644
@abdullahkhalid4644 Жыл бұрын
i m having problems in models.py tealcrm>lead>models.py in CHOICES_STATUS=( (NEW,'New'), (CONTACTED,'Contacted'), (WON,'Won'), (LOST,'Lost'), ) funtion is not defined pylance....plz Help
@abdullahkhalid4644
@abdullahkhalid4644 Жыл бұрын
help
@CodeWithStein
@CodeWithStein Жыл бұрын
Hey, that sounds weird. Can you send me an email with a screenshot?
@abdullahkhalid4644
@abdullahkhalid4644 Жыл бұрын
@@CodeWithStein ok
@kaartz
@kaartz 2 жыл бұрын
kzbin.info/www/bejne/gojVoGOki8mleNk Is this the first part of this series.
@CodeWithStein
@CodeWithStein 2 жыл бұрын
Yes it is 👍🏻
Django CRM Course - Clients - Part 3
26:22
Code With Stein
Рет қаралды 9 М.
Django CRM Course - Learn how to build a CRM using Python
53:33
Code With Stein
Рет қаралды 66 М.
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
Sigma Kid Mistake #funny #sigma
00:17
CRAZY GREAPA
Рет қаралды 30 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
Understanding Django In 30 Minutes | Eduonix
25:41
Eduonix Learning Solutions
Рет қаралды 103 М.
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 292 М.
Python Django CRM Course - Teams - Part 4
46:15
Code With Stein
Рет қаралды 8 М.
10 Signs Your Software Project Is Heading For FAILURE
17:59
Continuous Delivery
Рет қаралды 45 М.
I just tried o3-mini
6:31
ThePrimeTime
Рет қаралды 234 М.
Create Stunning Python GUIs in 10 Minutes With Drag & Drop
11:38
Coding Is Fun
Рет қаралды 119 М.
5 Python Libraries You Should Know in 2025!
22:30
Keith Galli
Рет қаралды 91 М.