Sha256: d81c2b53ccb91aad7a375fdc61f0a4534e6c719d488339ea5cf27c582363faf5

Contents?: true

Size: 1.85 KB

Versions: 3

Compression:

Stored size: 1.85 KB

Contents

<% content_for(:head) do %>
  <base href="<%= Bastion.config['relativeUrlRoot'] %>" />
<% end %>

<% content_for(:stylesheets) do %>
  <%= stylesheet_link_tag "bastion/bastion" %>
  <% Bastion.plugins.each do |name, plugin| %>
    <%= include_plugin_styles(plugin) %>
  <% 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('contentAccessMode', "<%= Organization.current.try(:content_access_mode) if Organization.current %>");
    angular.module('Bastion').value('foreman', tfm);
    angular.module('Bastion').value('entriesPerPage', "<%= Setting[:entries_per_page] %>");
    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| %>
    <%= include_plugin_js(plugin) %>
  <% end %>
<% end %>

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bastion-6.1.5 app/views/bastion/layouts/assets.html.erb
bastion-6.1.4 app/views/bastion/layouts/assets.html.erb
bastion-6.1.3 app/views/bastion/layouts/assets.html.erb