These are my code snippets - 

printer.py looks like -

@app.route('/respond', methods=['GET','POST'])def respond_def():
   message = request.form['message_input']
   if message == "l":
       return render_template('printer/login.html')
   elif message == "t":
       return render_template('printer/transactionID.html')

base.html looks like -

//some code here<li>
    {% block template %}{% endblock %}</li>//some code here

message.html looks like -

{% extends "base.html" %}{% block template %}<div> Message template called 
</div>{% endblock %}


-- 
*Confidentiality Note: * This e-mail and any attachments are confidential 
and may be protected by legal privilege. If you are not the intended 
recipient, be aware that any disclosure, copying, distribution or use of 
this e-mail or any attachment is prohibited. If you have received this 
e-mail in error, please notify us immediately by returning it to the sender 
and delete this copy from your system. Thank you for your cooperation.

-- 
You received this message because you are subscribed to the Google Groups 
"pocoo-libs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/pocoo-libs.
For more options, visit https://groups.google.com/d/optout.

Reply via email to