Sha256: cf2a4ba88b9707b3af02859d7ca1198e5c642d10a391497bda80656a99bc0498

Contents?: true

Size: 1.63 KB

Versions: 15

Compression:

Stored size: 1.63 KB

Contents

<% content_for(:stylesheets) do %>
  <%= stylesheet_link_tag "bastion/bastion" %>
  <% Bastion.plugins.each do |name, plugin| %>
    <% if plugin[:stylesheet] %>
      <%= stylesheet_link_tag(plugin[:stylesheet]) %>
    <% end %>
  <% end %>
<% end %>

<% content_for(:javascripts) do %>
  <%= javascript_include_tag 'bastion/bastion' %>
  <% if File.exist?("#{Bastion::Engine.root}/vendor/assets/javascripts/#{Bastion.localization_path(I18n.locale)}") %>
    <%= javascript_include_tag(Bastion.localization_path(I18n.locale)) %>
  <% end %>
  <script type="text/javascript">
    angular.module('Bastion.features').value('FeatureSettings', angular.fromJson(<%= SETTINGS[:features].nil? ? {} : SETTINGS[:features].to_json.html_safe %>));
    angular.module('Bastion').value('currentLocale', '<%= I18n.locale %>');
    angular.module('Bastion').value('CurrentOrganization', "<%= Organization.current.id if Organization.current %>");
    angular.module('Bastion').value('markActiveMenu', mark_active_menu);
    angular.module('Bastion').constant('BastionConfig', angular.fromJson('<%= Bastion.config.to_json.html_safe %>'));
    angular.module('Bastion.auth').value('CurrentUser', {
        id: <%= User.current.id %>,
        admin: <%= User.current.admin || User.current.usergroups.any? { |group| group.admin } %>
    });
    angular.module('Bastion.auth').value('Permissions', angular.fromJson('<%= User.current.cached_roles.collect { |role| role.permissions }.flatten.to_json.html_safe %>'));
  </script>
  <% Bastion.plugins.each do |name, plugin| %>
    <%= javascript_include_tag(plugin[:javascript]) %>
  <% end %>
<% end %>

<%= render file: "layouts/base" %>

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
bastion-4.2.2 app/views/bastion/layouts/assets.html.erb
bastion-4.2.1 app/views/bastion/layouts/assets.html.erb
bastion-4.2.0 app/views/bastion/layouts/assets.html.erb
bastion-4.1.0 app/views/bastion/layouts/assets.html.erb
bastion-4.0.0 app/views/bastion/layouts/assets.html.erb
bastion-3.4.4 app/views/bastion/layouts/assets.html.erb
bastion-3.4.3 app/views/bastion/layouts/assets.html.erb
bastion-3.4.2 app/views/bastion/layouts/assets.html.erb
bastion-3.4.1 app/views/bastion/layouts/assets.html.erb
bastion-3.4.0 app/views/bastion/layouts/assets.html.erb
bastion-3.3.6 app/views/bastion/layouts/assets.html.erb
bastion-3.3.5 app/views/bastion/layouts/assets.html.erb
bastion-3.3.4 app/views/bastion/layouts/assets.html.erb
bastion-3.3.3 app/views/bastion/layouts/assets.html.erb
bastion-3.3.2 app/views/bastion/layouts/assets.html.erb