52 lines
1.8 KiB
Plaintext
52 lines
1.8 KiB
Plaintext
<% content_for :page_specific_css do %>
|
|
<%= stylesheet_link_tag "inc/permission-checkbox" %>
|
|
<% end %>
|
|
<% content_for :page_specific_javascript do %>
|
|
<%= javascript_include_tag "inc/permission-checkbox" %>
|
|
<%= javascript_include_tag "inc/search" %>
|
|
<%= javascript_include_tag "inc/modal-preview" %>
|
|
<% end %>
|
|
<%= form_tag('', :remote => true,:class => "prevent_enter_submit_form") %>
|
|
<div class="subnav clear">
|
|
<ul class="nav nav-pills filter pull-left">
|
|
<li class="accordion-group">
|
|
<div class="form-search" style="margin: 5px 10px;">
|
|
<%= label_tag :object, @ob_auth.auth_obj.class %>
|
|
<%= label_tag :module,"::" %>
|
|
<%= select "ob_auth",'id',@options_from_collection_for_select_ob_auth %>
|
|
<%= search_field_tag 'user_filter' %>
|
|
</div>
|
|
|
|
</li>
|
|
</ul>
|
|
<%= link_to t("object_auth.list_title_of_users"), admin_object_auth_ob_auth_show_path(:app_key=>@module_app.key), :class=>'preview_trigger btn btn-success pull-right'%>
|
|
|
|
</div>
|
|
<%#= label_tag :role, t(:roles) %>
|
|
<div class="clear">
|
|
<%= content_tag :div do -%>
|
|
<% form_tag admin_object_auth_ob_auth_url do %>
|
|
<%= render :partial => "layouts/users_checkbox_ary" %>
|
|
<div class="form-actions form-fixed pagination-right">
|
|
<%= hidden_field_tag 'app_key', @module_app.key %>
|
|
<%= submit_tag t(:update_), :class => 'btn btn-primary' %>
|
|
</div>
|
|
<% end -%>
|
|
<% end -%>
|
|
</div>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
var availableTags = [];
|
|
$(document).ready(function() {
|
|
|
|
$(".prevent_enter_submit_form").bind("keypress", function(e) {
|
|
if (e.keyCode == 13) {
|
|
return false;
|
|
}
|
|
});
|
|
|
|
$('#ob_auth_id').change(function() {
|
|
window.location.href = "/admin/object_auths/"+$(this).val()+"/new_interface?app_key="+$("#app_key").val();
|
|
});
|
|
});
|
|
</script> |