summaryrefslogtreecommitdiff
path: root/app/views/notifications/show.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/notifications/show.html.haml')
-rw-r--r--app/views/notifications/show.html.haml26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/views/notifications/show.html.haml b/app/views/notifications/show.html.haml
new file mode 100644
index 00000000000..7ceb1926f1d
--- /dev/null
+++ b/app/views/notifications/show.html.haml
@@ -0,0 +1,26 @@
+%h3.page_title Setup your notification level
+%hr
+
+
+= form_tag profile_notifications_path do
+
+ %ul.unstyled
+ %li
+ .row
+ .span3
+ %h5 Global
+ .span9
+ = label_tag do
+ = radio_button_tag :notification_level, Notification::N_DISABLED, @notification.disabled?
+ %span Disabled
+
+ = label_tag do
+ = radio_button_tag :notification_level, Notification::N_PARTICIPATING, @notification.participating?
+ %span Participating
+
+ = label_tag do
+ = radio_button_tag :notification_level, Notification::N_WATCH, @notification.watch?
+ %span Watch
+
+ .form-actions
+ = submit_tag 'Save', class: 'btn btn-save'