mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 02:09:39 +02:00
71 lines
3 KiB
Text
71 lines
3 KiB
Text
%html{lang: I18n.locale.to_s}
|
|
%head
|
|
%meta{charset: "utf-8"}/
|
|
%meta{content: "IE=edge", "http-equiv" => "X-UA-Compatible"}/
|
|
%meta{content: "width=device-width, initial-scale=1", name: "viewport"}/
|
|
%meta{content: "Full stack top-level domain (TLD) management.", name: "description"}/
|
|
%meta{content: "Gitlab LTD", name: "author"}/
|
|
= csrf_meta_tags
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
|
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
|
%link{href: "../../favicon.ico", rel: "icon"}/
|
|
%title Eesti Interneti SA
|
|
%body{:style => env_style}
|
|
/ Static navbar
|
|
.navbar.navbar-inverse.navbar-static-top{role: "navigation"}
|
|
.container
|
|
.navbar-header
|
|
%button.navbar-toggle{"data-target" => ".navbar-collapse", "data-toggle" => "collapse", type: "button"}
|
|
%span.sr-only Toggle navigation
|
|
%span.icon-bar
|
|
%span.icon-bar
|
|
%span.icon-bar
|
|
= link_to admin_dashboard_path, class: 'navbar-brand' do
|
|
= ENV['app_name']
|
|
- if unstable_env.present?
|
|
.text-center
|
|
%small{style: 'color: #0074B3;'}= unstable_env
|
|
|
|
.navbar-collapse.collapse
|
|
%ul.nav.navbar-nav
|
|
- if can? :show, Domain
|
|
%li= link_to t('domains'), admin_domains_path
|
|
- if can? :show, Contact
|
|
%li= link_to t('contacts'), admin_contacts_path
|
|
- if can? :show, Registrar
|
|
%li= link_to t('registrars'), admin_registrars_path
|
|
- if can? :show, Keyrelay
|
|
%li= link_to t('keyrelays'), admin_keyrelays_path
|
|
- if can?(:access, :settings_menu)
|
|
%li.dropdown
|
|
%a.dropdown-toggle{"data-toggle" => "dropdown", href: "#"}
|
|
= t('settings')
|
|
%span.caret
|
|
%ul.dropdown-menu{role: "menu"}
|
|
%li.dropdown-header= t('system')
|
|
%li= link_to t('settings'), admin_settings_path
|
|
%li= link_to t('zonefile'), admin_zonefile_settings_path
|
|
-# %li= link_to t(:domains_history), admin_domain_versions_path
|
|
%li= link_to t(:epp_logs), admin_epp_logs_path
|
|
%li= link_to t(:repp_logs), admin_repp_logs_path
|
|
%li= link_to t(:background_jobs), admin_delayed_jobs_path
|
|
|
|
%li.divider
|
|
%li.dropdown-header= t('users')
|
|
%li= link_to t(:admin_users), admin_admin_users_path
|
|
%li= link_to t(:api_users), admin_api_users_path
|
|
|
|
%ul.nav.navbar-nav.navbar-right
|
|
%li= link_to t('log_out', user: current_user), '/logout'
|
|
|
|
/ /.nav-collapse
|
|
.container
|
|
- display = (flash.empty?) ? 'none' : 'block'
|
|
#flash{style: "display: #{display};"}
|
|
- type = (flash[:notice]) ? 'bg-success' : 'bg-danger'
|
|
.alert{class: type}= flash[:notice] || flash[:alert]
|
|
= yield
|
|
|
|
.footer.text-right
|
|
Version
|
|
= CURRENT_COMMIT_HASH
|