diff --git a/app/views/bounties/index.html.erb b/app/views/bounties/index.html.erb index 9b450eb..abbce0a 100644 --- a/app/views/bounties/index.html.erb +++ b/app/views/bounties/index.html.erb @@ -12,8 +12,18 @@ -
- <%= render @bounties %> -
+<% if @bounties.present? %> +
+ <%= render @bounties %> +
-<%== pagy_nav(@pagy).html_safe %> + <%== pagy_nav(@pagy).html_safe %> +<% else %> + <% if @filter == "open" %> +

+ There are no open bounties right now. +
+ Spread the word that we need people to post new Beginner Bounties! +

+ <% end %> +<% end %>