about summary refs log tree commit diff
path: root/app/views/settings/flavours/show.html.haml
diff options
context:
space:
mode:
authorkibigo! <marrus-sh@users.noreply.github.com>2017-12-10 17:56:17 -0800
committerkibigo! <marrus-sh@users.noreply.github.com>2017-12-10 20:32:27 -0800
commitdabf66e676c693e7e26a6035e0c6296e6804e776 (patch)
tree58a88b897ae5c905425669547d7272f53801ef73 /app/views/settings/flavours/show.html.haml
parent08b0861b961a0f5e68ccd6a21db463671723652d (diff)
Moved flavour UI into own prefs tab
Diffstat (limited to 'app/views/settings/flavours/show.html.haml')
-rw-r--r--app/views/settings/flavours/show.html.haml16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/views/settings/flavours/show.html.haml b/app/views/settings/flavours/show.html.haml
new file mode 100644
index 000000000..488fd2d15
--- /dev/null
+++ b/app/views/settings/flavours/show.html.haml
@@ -0,0 +1,16 @@
+- content_for :page_title do
+  = t "flavours.#{@selected}.name", default: @selected
+
+= simple_form_for current_user, url: settings_flavour_path(@selected), html: { method: :put } do |f|
+  = render 'shared/error_messages', object: current_user
+
+  .flavour-description
+    = t "flavours.#{@selected}.description", default: ''
+
+  %hr/
+
+  .fields-group
+    = f.input :setting_skin, collection: Themes.instance.skins_for(@selected), label_method: lambda { |skin| I18n.t("skins.#{@selected}.#{skin}", default: skin) }, wrapper: :with_label, include_blank: false
+
+  .actions
+    = f.button :button, t('generic.use_this'), type: :submit