diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-20 14:48:25 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-20 14:48:25 +0200 |
commit | 8bb831a4c3ce3a2e9c0d61a5a058db87a9e408a0 (patch) | |
tree | d2f2eb71f19808ea5f56f419595279658fc95035 /src/web/templates/profile.html | |
parent | lazy loading of the translation (diff) | |
download | newspipe-8bb831a4c3ce3a2e9c0d61a5a058db87a9e408a0.tar.gz newspipe-8bb831a4c3ce3a2e9c0d61a5a058db87a9e408a0.tar.bz2 newspipe-8bb831a4c3ce3a2e9c0d61a5a058db87a9e408a0.zip |
Draft for a public user profile page.
Diffstat (limited to 'src/web/templates/profile.html')
-rw-r--r-- | src/web/templates/profile.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/web/templates/profile.html b/src/web/templates/profile.html index acd593b2..8751446f 100644 --- a/src/web/templates/profile.html +++ b/src/web/templates/profile.html @@ -34,6 +34,9 @@ {{ form.refresh_rate.label }} {{ form.refresh_rate(class_="form-control") }} {% for error in form.refresh_rate.errors %} <span style="color: red;">{{ error }}<br /></span>{% endfor %} + + {{ form.is_public_profile.label }} + {{ form.is_public_profile(class_="form-control") }} {% for error in form.is_public_profile.errors %} <span style="color: red;">{{ error }}<br /></span>{% endfor %} <br /> {{ form.submit(class_="btn") }} </form> |