Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.erb « blueprints « layouts - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 122cc2dbc85ba6dca8586d515ecae06372d6112c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<% render '/default.*' do %>
  <% if @item.identifier.match?('/ee/architecture/blueprints/**/*.md') %>
    <%= legal_disclaimer %>
    <%= render '/blueprints/table.*', { :blueprints => [ @item ], :summary => true } %>
    <%= yield %>
  <% else %>
    <%= yield %>
    
    <div class="gl-display-flex gl-justify-content-space-around">
      <% all_blueprints.group_by{ |b| b[:status] }.each do |k,c| %>
        <gl-label title="<%= "#{k}::#{c.size.to_s}" %>" />
      <% end %>
    </div>
    <%= render '/blueprints/table.*', :blueprints => all_blueprints %>
  <% end %>
<% end %>