aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/admin_user
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin_user')
-rw-r--r--app/views/admin_user/_form.html.erb9
-rw-r--r--app/views/admin_user/show.html.erb6
2 files changed, 15 insertions, 0 deletions
diff --git a/app/views/admin_user/_form.html.erb b/app/views/admin_user/_form.html.erb
index e7175d09c..f1edc0927 100644
--- a/app/views/admin_user/_form.html.erb
+++ b/app/views/admin_user/_form.html.erb
@@ -64,3 +64,12 @@
</div>
</div>
</div>
+<div class="control-group">
+ <label for="admin_user_can_make_batch_requests" class="control-label">Can make batch requests</label>
+ <div class="controls">
+ <%= check_box 'admin_user', 'can_make_batch_requests' %>
+ <div class="help-block">
+ allows the user to send a request to multiple authorities at once
+ </div>
+ </div>
+</div>
diff --git a/app/views/admin_user/show.html.erb b/app/views/admin_user/show.html.erb
index c93c08e50..6d12aeff5 100644
--- a/app/views/admin_user/show.html.erb
+++ b/app/views/admin_user/show.html.erb
@@ -91,6 +91,12 @@
<hr>
+<h2>Annotations</h2>
+
+<%= render :partial => 'admin_request/some_annotations' , :locals => { :comments => @admin_user.comments } %>
+
+<hr>
+
<h2>Censor rules</h2>
<%= render :partial => 'admin_censor_rule/show', :locals => { :censor_rules => @admin_user.censor_rules, :user => @admin_user } %>