Sha256: 9ee69fe149592c6cf426b94ad57ca521909fba080386a13fb126d884835fe521

Contents?: true

Size: 1.04 KB

Versions: 6

Compression:

Stored size: 1.04 KB

Contents

<nav class="navbar navbar-default" role="navigation">
  <div class="container">
    <div class="navbar-header">
      <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#feature-flags-nav">
        <span class="sr-only">Toggle navigation</span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
      </button>

      <%= link_to "Detour", root_path, class: "navbar-brand" %>
    </div>

    <div class="collapse navbar-collapse navbar-right" id="feature-flags-nav">
      <ul class="nav navbar-nav">
        <li><%= link_to "Groups", groups_path %></li>
        <li class="dropdown">
          <a href="javascript:void(0)" data-toggle="dropdown">Feature Flags <b class="caret"></b></a>

          <ul class="dropdown-menu">
            <% Detour.config.flaggable_types.each do |type| %>
              <li><%= link_to "#{type} Flags", flags_path(type.constantize.table_name) %></li>
            <% end %>
          </ul>
        </li>
      </ul>
    </div>
  </div>
</nav>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
detour-0.0.15 app/views/detour/shared/_nav.html.erb
detour-0.0.14 app/views/detour/shared/_nav.html.erb
detour-0.0.13 app/views/detour/shared/_nav.html.erb
detour-0.0.12 app/views/detour/shared/_nav.html.erb
detour-0.0.11 app/views/detour/shared/_nav.html.erb
detour-0.0.10 app/views/detour/shared/_nav.html.erb