mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-15 02:37:08 +02:00
Remove unused partial template
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
This commit is contained in:
parent
1bc354000c
commit
3229e3e270
@ -1,80 +0,0 @@
|
||||
<ul class="navbar-nav navbar-sidenav" id="side-menu">
|
||||
<li class="nav-item">
|
||||
<a class="section" data-toggle="tooltip" data-placement="right" title="Fluentd">
|
||||
<%= icon("fa-puzzle-piece fa-fw") << "fluentd" %>
|
||||
</a>
|
||||
<ul class="sidenav-second-level">
|
||||
<% if fluentd_exists? %>
|
||||
<li>
|
||||
<%= link_to_other t('fluentd.show.page_title'), daemon_path %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to_other t('fluentd.settings.source_and_output.page_title'), source_and_output_daemon_setting_path %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to_other t('fluentd.settings.show.page_title'), daemon_setting_path %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to_other t('fluentd.common.log'), log_daemon_path %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to_other t('fluentd.errors.page_title'), errors_daemon_path %>
|
||||
</li>
|
||||
<% else %>
|
||||
<li>
|
||||
<%= link_to_other t('terms.initial_setup'), daemon_path %>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<% if fluentd_exists? %>
|
||||
<li class="nav-item">
|
||||
<a class="section" data-toggle="tooltip" data-placement="right" title="Plugins">
|
||||
<%= icon("fa-cogs fa-fw") << t('terms.plugins') %>
|
||||
</a>
|
||||
<ul class="sidenav-second-level">
|
||||
<li>
|
||||
<%= link_to_other t("plugins.installed.page_title"), installed_plugins_path %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to_other t("plugins.recommended.page_title"), recommended_plugins_path %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to_other t("plugins.updated.page_title"), updated_plugins_path %>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<li class="nav-item">
|
||||
<a class="section" data-toggle="tooltip" data-placement="right" title="Misc">
|
||||
<%= icon('fa-coffee fa-fw') << t('terms.misc') %>
|
||||
</a>
|
||||
<ul class="sidenav-second-level">
|
||||
<li>
|
||||
<%= link_to_other t("misc.information.page_title"), misc_information_path %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to_other t('users.show.page_title'), user_path %>
|
||||
</li>
|
||||
<!--
|
||||
Not used for now (0.0.1 pre)
|
||||
<li>
|
||||
<%= link_to_other t('tutorials.index.page_title'), tutorials_path %>
|
||||
</li>
|
||||
-->
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a class="section" data-toggle="tooltip" data-placement="right" title="Language">
|
||||
<%= icon('fa-font') << t('terms.languages') %>
|
||||
</a>
|
||||
<ul class="sidenav-second-level">
|
||||
<li>
|
||||
<%= language_menu %>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
@ -1,27 +0,0 @@
|
||||
<!-- vue.js -->
|
||||
<li class="nav-item dropdown" id="vue-notification">
|
||||
<a class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="#">
|
||||
<i class="fa fa-bell fa-fw"></i>
|
||||
<span class="badge" v-if="hasAlerts">{{ alertsCount }}</span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" aria-labelledby="alertsDropdown">
|
||||
<li v-if="!hasAlerts">
|
||||
<a>
|
||||
<div class="nothing text text-success">
|
||||
<%= icon "fa-check" %>
|
||||
<%= t "terms.no_alert" %>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
<li v-for="alert in alerts">
|
||||
<a>
|
||||
<div>
|
||||
<%= icon("fa-cog fa-fw fa-lg fa-spin") %>
|
||||
{{ alert }}
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<!-- /vue.js -->
|
||||
|
Loading…
Reference in New Issue
Block a user