| {% extends "base.html" %} | |
| {% block head %} | |
| <script type="text/javascript"> | |
| $(document).ready(function(){ | |
| $('[data-toggle="tooltip"]').tooltip({ | |
| placement : 'top', | |
| float : 'left' | |
| }); | |
| }); | |
| </script> | |
| {% endblock %} | |
| {% block content %} | |
| <h1>User information</h1> | |
| {% include 'flash_messages.html' %} | |
| {% if message %} | |
| <p class="success">{{ message }}</p> | |
| {% endif %} | |
| {% from 'macros.html' import render_form %} | |
| {{ render_form(form, action_url=url_for('profile'), method='POST', action_text=_('update')) }} | |
| {% endblock %} |