aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/wiki/settings.html
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-12 16:00:03 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-12 16:00:03 +0100
commita0ff872429a0a61239b78ecd9ed80bb3b12bae98 (patch)
tree22a2a351b99d344f6fd378c8ed663a14ee1700dc /pydis_site/templates/wiki/settings.html
parentMore forms work - Boolean is done! (diff)
Mostly-working model choice stuff
Diffstat (limited to 'pydis_site/templates/wiki/settings.html')
-rw-r--r--pydis_site/templates/wiki/settings.html17
1 files changed, 10 insertions, 7 deletions
diff --git a/pydis_site/templates/wiki/settings.html b/pydis_site/templates/wiki/settings.html
index 6d6c0f49..3e8c8dab 100644
--- a/pydis_site/templates/wiki/settings.html
+++ b/pydis_site/templates/wiki/settings.html
@@ -7,15 +7,18 @@
{% block wiki_contents_tab %}
{% for form in forms %}
- <form method="POST" class="form-horizontal settings-form" action="?f={{form.action}}">
+ <form method="POST" class="form-horizontal" action="?f={{form.action}}">
<h3 class="page-header">{{ form.settings_form_headline }}</h3>
{% wiki_form form %}
- <div class="form-group form-actions">
- <div class="col-lg-10 col-lg-2-offset">
- <button type="submit" name="save" value="1" class="btn btn-primary">
- <span class="fa fa-check"></span>
- {% trans "Save changes" %}
- </button>
+
+ <div class="field is-horizontal">
+ <div class="field-label">
+ {# Empty for spacing #}
+ </div>
+ <div class="field-body">
+ <div class="control">
+ <input type="submit" class="button is-primary is-medium" name="save" value="Save Changes" />
+ </div>
</div>
</div>
</form>