Re: Template inheritance not working

2022-11-19 Thread Chukwudi Onwusa
You can WhatsApp me on 08125409314, screenshot short your error page and send, together with with inherited template and your parent template. On Sat, Nov 19, 2022, 18:10 Alec Delaney <96alecpatr...@gmail.com> wrote: > Okay, Cause I am looking for another example for template inheritance > > >

Re: Template inheritance not working

2022-11-19 Thread subin
I will continue learning more about . On Sat, Nov 19, 2022 at 5:53 PM Chukwudi Onwusa wrote: > On WhatsApp > > On Sat, Nov 19, 2022, 17:14 Alec Delaney <96alecpatr...@gmail.com> wrote: > >> Hello, would you be available for zoom? >> >> >> On Fri, Nov 18, 2022 at 10:04 PM Chukwudi Onwusa >>

Re: Template inheritance not working

2022-11-19 Thread subin
Season’s greetings! Our offices will be closed on Dec. 24 and 25. However On Sat, Nov 19, 2022 at 5:53 PM Chukwudi Onwusa wrote: > On WhatsApp > > On Sat, Nov 19, 2022, 17:14 Alec Delaney <96alecpatr...@gmail.com> wrote: > >> Hello, would you be available for zoom? >> >> >> On Fri, Nov 18, 2022

Re: Template inheritance not working

2022-11-19 Thread subin
Hi On Sat, Nov 19, 2022 at 5:53 PM Chukwudi Onwusa wrote: > On WhatsApp > > On Sat, Nov 19, 2022, 17:14 Alec Delaney <96alecpatr...@gmail.com> wrote: > >> Hello, would you be available for zoom? >> >> >> On Fri, Nov 18, 2022 at 10:04 PM Chukwudi Onwusa >> wrote: >> >>> What error is it showing

Re: Template inheritance not working

2022-11-19 Thread Alec Delaney
you dont have zoom? On Sat, Nov 19, 2022 at 12:09 PM Alec Delaney <96alecpatr...@gmail.com> wrote: > Okay, Cause I am looking for another example for template inheritance > > > On Sat, Nov 19, 2022 at 11:54 AM Chukwudi Onwusa > wrote: > >> On WhatsApp >> >> On Sat, Nov 19, 2022, 17:14 Alec

Re: Template inheritance not working

2022-11-19 Thread Alec Delaney
Okay, Cause I am looking for another example for template inheritance On Sat, Nov 19, 2022 at 11:54 AM Chukwudi Onwusa wrote: > On WhatsApp > > On Sat, Nov 19, 2022, 17:14 Alec Delaney <96alecpatr...@gmail.com> wrote: > >> Hello, would you be available for zoom? >> >> >> On Fri, Nov 18, 2022

Re: Template inheritance not working

2022-11-19 Thread Chukwudi Onwusa
On WhatsApp On Sat, Nov 19, 2022, 17:14 Alec Delaney <96alecpatr...@gmail.com> wrote: > Hello, would you be available for zoom? > > > On Fri, Nov 18, 2022 at 10:04 PM Chukwudi Onwusa > wrote: > >> What error is it showing you? >> Please send a picture of it. Remember you can save your base with

Re: Template inheritance not working

2022-11-19 Thread Alec Delaney
Hello, would you be available for zoom? On Fri, Nov 18, 2022 at 10:04 PM Chukwudi Onwusa wrote: > What error is it showing you? > Please send a picture of it. Remember you can save your base with your > desired name, but you should also not that you should register your > templates directory

Re: Template inheritance not working

2022-11-18 Thread Chukwudi Onwusa
What error is it showing you? Please send a picture of it. Remember you can save your base with your desired name, but you should also not that you should register your templates directory in settings template list as [BASE_DIRS/ "templates"] and Incase your template files are in an embedded

Re: Template inheritance not working

2022-11-18 Thread David Emanuel Sandoval
The base template contains the default content, and blocks with default contents in it. Then, in the child template, you can override those blocks. El vie, 18 nov 2022 17:54, Alec Delaney <96alecpatr...@gmail.com> escribió: > Hello. How are you? Can I see another example of template inheritance?

Re: Template inheritance not working

2022-11-18 Thread Alec Delaney
Hello. How are you? Can I see another example of template inheritance? On Mon, Oct 31, 2022 at 2:34 PM Ammar Mohammed wrote: > Hello dear > There is a little mistake in your code : > You should put the {%block block_name %} in your base template with no > code and the put the code you want to

Re: Template inheritance not working

2022-11-08 Thread Alec Delaney
Thank you! On Mon, Oct 31, 2022 at 2:34 PM Ammar Mohammed wrote: > Hello dear > There is a little mistake in your code : > You should put the {%block block_name %} in your base template with no > code and the put the code you want to be displayed in your child template > file > Here is an

Re: Template inheritance not working

2022-11-02 Thread peteru mimo
Your template inheritance cannot be index.html make it base.html and put whatever you want to be display in all pages on it then extends it in index page and other page On Wed, Nov 2, 2022 at 10:26 AM FLAVIEN HERI wrote: > can it be the problem of the first block content which is empty.in >

Re: Template inheritance not working

2022-11-02 Thread FLAVIEN HERI
can it be the problem of the first block content which is empty.in index.html, try to delete the empty block content, leave the second one and see what happen On 10/31/22, Ammar Mohammed wrote: > Hello dear > There is a little mistake in your code : > You should put the {%block block_name %} in

Re: Template inheritance not working

2022-10-31 Thread Ammar Mohammed
Hello dear There is a little mistake in your code : You should put the {%block block_name %} in your base template with no code and the put the code you want to be displayed in your child template file Here is an example : // file.html : {% extends "index.html" %} {% block content %} Hello,