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 trial

Python

How much python could be in jinja2 template

I followed this instructions: "Split the email address into its two main parts Print the first letter of the "name" part of the email Print asterisks for the remaining letters Print the @ symbol Print the domain name"

I am unable to debug my code because it returns 404

lunch.py
from flask import Flask, render_template

app = Flask(__name__)

@app.route('/')
def index():
    class User:
        email = None
    user = User()
    user.email = 'kenneth@teamtreehouse.com'
    return render_template('user.html', user=user)
templates/macro.html
{% macro hide_email(User) %}
{{ form.hidden_tag()
{{ name,domain = User.email.split("@")
print(name[0])
for idx,letter in enumerate(name):
    if idx !=0:
        print "*"
print("@")
print(domain)   
}}
{% endmacro %}

1 Answer

I agree. Do you have any solution for it?