]> git.openstreetmap.org Git - rails.git/commitdiff
Show count of open issues in the header
authorTom Hughes <tom@compton.nu>
Sat, 16 Jun 2018 11:40:15 +0000 (12:40 +0100)
committerTom Hughes <tom@compton.nu>
Sat, 16 Jun 2018 11:40:15 +0000 (12:40 +0100)
app/helpers/issues_helper.rb
app/views/layouts/_header.html.erb

index cfde880cd522d77326c742ac644cceb44b105f8e..4dc1637de2cc00bb296570268eff97e22a85bd8e 100644 (file)
@@ -24,4 +24,13 @@ module IssuesHelper
       I18n.t("issues.helper.reportable_title.note", :note_id => reportable.id)
     end
   end
+
+  def open_issues_count
+    count = Issue.open.limit(100).size
+    if count > 99
+      content_tag(:span, "99+", :class => "count-number")
+    elsif count > 0
+      content_tag(:span, count, :class => "count-number")
+    end
+  end
 end
index 050d8a0817669702257c76c62c958ea89110c23a..862e5bb27821ea64eb0f854231b40908792ab3bf 100644 (file)
   <nav class='secondary'>
     <ul>
       <% if current_user and ( current_user.administrator? or current_user.moderator? ) %>
-        <li class="compact-hide <%= current_page_class(issues_path) %>"><%= link_to t('layouts.issues'), issues_path(:status => 'open') %></li>
+        <li class="compact-hide <%= current_page_class(issues_path) %>">
+          <%= link_to issues_path(:status => 'open') do %>
+            <%= t('layouts.issues') %>
+            <%= open_issues_count %>
+          <% end -%>
+        </li>
       <% end %>
       <li class="compact-hide <%= current_page_class(traces_path) %>"><%= link_to t('layouts.gps_traces'), traces_path %></li>
       <li class="compact-hide <%= current_page_class(diary_path) %>"><%= link_to t('layouts.user_diaries'), diary_path %></li>