Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8404129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T22:31:15+00:00 2026-06-09T22:31:15+00:00

i’m developing a small app with Python and Google app engine. I’m using boilerplate

  • 0

i’m developing a small app with Python and Google app engine. I’m using boilerplate (https://github.com/coto/gae-boilerplate) as front-end which follows gae direction and python templates, so nothing diffrent than plain stuff.

Now, what i would like to have is this.
When a user logged in, if the field of name and last name are not filled in i would like to have, in the home page, the profile editing.

The page for editing the profile is a template (which extend the base.html), called edit_profile.html which works well.
The homepage is a template as well (extend the base.html) called home.html.

Now, can i include the edit_profile.html in home.html? how can i do it?

this is what i’ve, i don’t know what to put instead of ???? i tried with

 {% block edit_profile.html %}  {% endblock %}

but does not work

{% if user_info.name and user_info.last_name %}
        ..
        {% else %}
           ????
        {% endif %}

thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T22:31:16+00:00Added an answer on June 9, 2026 at 10:31 pm

    So you want to include only some block of given template. There are two solutions:

    1) Create template just for profile editing form and include it into edit_profile.html. Then include it also into home.html to if condition branch:

    profile_form.html:

    <form action="{% url some-action %}">
    {{ form }}
    <input type="submit" value="save"/>
    </form
    

    profile_edit.html

    {% extends "base.html" %}
    
    {% block main %}
    {% include "profile_form.html" %}
    {% endblock %}
    

    home.html

    {% if user_info.name and user_info.last_name %}
    {% include "profile_form.html" %}
    {% endif %}
    

    2) use variable for extended template:

    profile_form.html

    {% extend BASE_TEMPLATE %}
    

    and set it into context w/ different value as needed:

    in home.html (let’s say included_form.html is some basic template)

    {% if user_info.name and user_info.last_name %}
    {% with "included_form.html" as BASE_TEMPLATE %}
       {% include "edit_profile.html" %}
    {% endwith %}
    {% endif %}
    

    and if you want show form as a standalone page, set BASE_TEMPLATE to base.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We're building an app, our first using Rails 3, and we're having to build
I am using Paperclip to handle profile photo uploads in my app. They upload
I'm making a simple page using Google Maps API 3. My first. One marker
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I used javascript for loading a picture on my website depending on which small
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.