Sha256: 369a60c96a690e9eb48eab766c80833c5e275674d00cd195f62a3267f60ac367
Contents?: true
Size: 1.09 KB
Versions: 15
Compression:
Stored size: 1.09 KB
Contents
<div class="row"> <% if its_the_weekend? %> <div id="ops-queue-for-coming-week" class="ops-queue small-8 columns"> <h2><%= name_for_coming_week %> <%= partial :count, locals: { count: no_ops(jiras_for_today).length, today: false } %></h2> <%= partial :queue, locals: { jiras: jiras_for_today } %> </div> <% else %> <div id="ops-queue-for-today" class="ops-queue small-4 columns"> <h2><%= name_for_today %> <%= partial :count, locals: { count: no_ops(jiras_for_today).length, today: true } %></h2> <%= partial :queue, locals: { jiras: jiras_for_today } %> </div> <div id="ops-queue-for-tomorrow" class="ops-queue small-4 columns"> <h2><%= name_for_tomorrow %> <%= partial :count, locals: { count: no_ops(jiras_for_tomorrow).length, today: false } %></h2> <%= partial :queue, locals: { jiras: jiras_for_tomorrow } %> </div> <% end %> <section id="ops-ask" class="small-4 columns"> <h2>Create JIRA</h2> <%= partial :form, locals: { jiras_for_today: jiras_for_today, jiras_for_tomorrow: jiras_for_tomorrow } %> </section> </div>
Version data entries
15 entries across 15 versions & 1 rubygems