mirror of https://github.com/kf7eel/hbnet.git
add generic template
This commit is contained in:
parent
6c3ee7ee78
commit
aa3271255f
|
|
@ -1127,7 +1127,7 @@ def hbnet_web_service():
|
|||
<h2 style="text-align: center;"><a href="update_ids?callsign=''' + current_user.username + '''">Yes, update my information.</a></h2>
|
||||
|
||||
'''
|
||||
return render_template('flask_user_layout.html', markup_content = Markup(content))
|
||||
return render_template('generic.html', markup_content = Markup(content))
|
||||
|
||||
|
||||
@app.route('/email_user', methods=['POST', 'GET'])
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
{% extends 'flask_user/_public_base.html' %}
|
||||
{% block content %}
|
||||
<p> </p>
|
||||
|
||||
<div class="row">
|
||||
|
||||
|
||||
{{markup_content}}
|
||||
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
Loading…
Reference in New Issue