summaryrefslogtreecommitdiff
path: root/users/app/views/users/_edit.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'users/app/views/users/_edit.html.haml')
-rw-r--r--users/app/views/users/_edit.html.haml6
1 files changed, 2 insertions, 4 deletions
diff --git a/users/app/views/users/_edit.html.haml b/users/app/views/users/_edit.html.haml
index d2c2d95..897c54b 100644
--- a/users/app/views/users/_edit.html.haml
+++ b/users/app/views/users/_edit.html.haml
@@ -47,13 +47,11 @@
%legend= t(:service_level)
- if @user != current_user
= t(:desired_service_level)
- - sl1 = ServiceLevel.new({level: 1}) #ugly but okay for now
- - sl2 = ServiceLevel.new({level: 2})
- = f.select :desired_service_level_code, [[sl1.description, sl1.level],[sl2.description, sl2.level]], :selected => @user.desired_service_level.level
+ = f.select :desired_service_level_code, ServiceLevel.authenticated_select_options, :selected => @user.desired_service_level.id
- if @user != current_user
%p
= t(:effective_service_level)
- = f.select :effective_service_level_code, [[sl1.description, sl1.level],[sl2.description, sl2.level]], :selected => @user.effective_service_level.level
+ = f.select :effective_service_level_code, ServiceLevel.authenticated_select_options, :selected => @user.effective_service_level.id
.control-group
.controls
= f.submit t(:save), :class => 'btn', :data => {"loading-text" => "Saving..."}