Sha256: 7fbef0f2067ff0590e6f1032fe64c18e5c591c2cb4af5b76e10460a64eb8afa0

Contents?: true

Size: 1.61 KB

Versions: 7

Compression:

Stored size: 1.61 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('Permissions', angular.fromJson('<%= User.current.cached_roles.collect { |role| role.permissions }.flatten.to_json.html_safe %>'));
    angular.module('Bastion').value('CurrentUser', {
      id: <%= User.current.id %>,
      admin: <%= User.current.admin || User.current.usergroups.any? { |group| group.admin } %>
    });
    angular.module('Bastion').value('markActiveMenu', mark_active_menu);
    angular.module('Bastion').constant('BastionConfig', angular.fromJson('<%= Bastion.config.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

7 entries across 7 versions & 1 rubygems

Version Path
bastion-3.3.1 app/views/bastion/layouts/assets.html.erb
bastion-3.3.0 app/views/bastion/layouts/assets.html.erb
bastion-3.2.2 app/views/bastion/layouts/assets.html.erb
bastion-3.2.1 app/views/bastion/layouts/assets.html.erb
bastion-3.2.0 app/views/bastion/layouts/assets.html.erb
bastion-3.1.0 app/views/bastion/layouts/assets.html.erb
bastion-3.0.1 app/views/bastion/layouts/assets.html.erb