Akron | ca9bd98 | 2016-12-06 16:59:57 +0100 | [diff] [blame^] | 1 | {% extends "base.html" %} |
| 2 | {% block head %} |
| 3 | <script type="text/javascript"> |
| 4 | $(document).ready(function(){ |
| 5 | $('[data-toggle="tooltip"]').tooltip({ |
| 6 | placement : 'top', |
| 7 | float : 'left' |
| 8 | }); |
| 9 | }); |
| 10 | |
| 11 | </script> |
| 12 | {% endblock %} |
| 13 | {% block content %} |
| 14 | <h1>User information</h1> |
| 15 | {% include 'flash_messages.html' %} |
| 16 | |
| 17 | {% if message %} |
| 18 | <p class="success">{{ message }}</p> |
| 19 | {% endif %} |
| 20 | |
| 21 | {% from 'macros.html' import render_form %} |
| 22 | {{ render_form(form, action_url=url_for('profile'), method='POST', action_text=_('update')) }} |
| 23 | |
| 24 | {% endblock %} |