aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2014-02-04 11:17:29 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2014-02-04 11:17:29 +0100
commit01be523b8001d115243700beaf050ff3f5e4b0a5 (patch)
tree5dc89805d89f51d8d1336418d27cd451a332b6f2 /pyaggr3g470r
parentUpdated benchmark. (diff)
downloadnewspipe-01be523b8001d115243700beaf050ff3f5e4b0a5.tar.gz
newspipe-01be523b8001d115243700beaf050ff3f5e4b0a5.tar.bz2
newspipe-01be523b8001d115243700beaf050ff3f5e4b0a5.zip
Minor fix to the templates for the views /edit_feed and /profile.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/templates/edit_feed.html3
-rw-r--r--pyaggr3g470r/templates/profile.html3
2 files changed, 4 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/edit_feed.html b/pyaggr3g470r/templates/edit_feed.html
index 1ea774b6..48b7ecaf 100644
--- a/pyaggr3g470r/templates/edit_feed.html
+++ b/pyaggr3g470r/templates/edit_feed.html
@@ -21,8 +21,9 @@
{{ form.enabled.label }}
{{ form.enabled(class_="checkbox") }}
+ <br />
{{ form.submit(class_="btn") }}
</form>
</div>
</div><!-- /.container -->
-{% endblock %} \ No newline at end of file
+{% endblock %}
diff --git a/pyaggr3g470r/templates/profile.html b/pyaggr3g470r/templates/profile.html
index bbb7981d..0bad12ee 100644
--- a/pyaggr3g470r/templates/profile.html
+++ b/pyaggr3g470r/templates/profile.html
@@ -17,8 +17,9 @@
{{ form.password.label }}
{{ form.password(class_="form-control") }} {% for error in form.password.errors %} <span style="color: red;">{{ error }}<br /></span>{% endfor %}
+ <br />
{{ form.submit(class_="btn") }}
</form>
</div>
</div><!-- /.container -->
-{% endblock %} \ No newline at end of file
+{% endblock %}
bgstack15