Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKARTIK BHASIN
9,299 PointsNot showing "15 + 75 = 90"
When using add.html using layout.html, it never displays the result "15 + 75 = 90". But it always shows "Brought to you by the fine folks at Treehouse!".
1 Answer
Vittorio Somaschini
33,371 PointsHello Kartik.
Can you please provide your code? Or a snippet of the workspace you are working on?
Thanks, Vitto
KARTIK BHASIN
9,299 PointsKARTIK BHASIN
9,299 Points{% extends "layout.html" %}
{% block title %}Adding! | {{ super() }}{% endblock %}
{% block content %}
<h1>{{ num1 }} + {{ num2 }} = {{ num1 + num2 }}</h1>
{% endblock %}}
add.html
KARTIK BHASIN
9,299 PointsKARTIK BHASIN
9,299 Points<!doctype html> <html> <head> <title>{% block title %}Flask Basics{% endblock %} </title> <link rel = "stylesheet" href = "/static/styles.css">
</head> <body> {% block contenet %}{% endblock %} <p> Brought to you by the fine folks at Treehouse!</p>
</body> </html>
layout.html
KARTIK BHASIN
9,299 PointsKARTIK BHASIN
9,299 Pointsdef add(num1, num2): return render_template("add.html", num1 = num1, num2 = num2)