init push - laying out the project

This commit is contained in:
Mike Sutton
2022-11-12 02:27:46 +01:00
commit 14e163a1a5
183 changed files with 20069 additions and 0 deletions

View File

@ -0,0 +1,11 @@
<% @activities_hash.except(:all_activities).each do |k, activities| %>
<% if k.starts_with?('project_asks.') %>
<div style="border: 1px solid #eee; padding: 15px; margin-bottom: 15px;border-radius: 15px; background: #f3f3f3">
<h3 style="margin: 0 0 15px;">Activities</h3>
<% activities.each do |activity| %>
<%= render partial: 'partials/project_ask_digest', locals: { activity: activity } %>
<% end %>
</div>
<% end %>
<% end %>