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 trialkacperwikiel
15,795 PointsHow 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
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)
{% 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
Trevor Currie
9,289 PointsA lot of people have been having trouble with this challenge (including myself)!
https://teamtreehouse.com/forum/splitting-the-string https://teamtreehouse.com/forum/flask-social-network-macro-code-challenge-formatting https://teamtreehouse.com/forum/create-a-macro-hideemail
Daniel Santos
34,969 PointsDaniel Santos
34,969 PointsI agree. Do you have any solution for it?