blob: 6ae66bb386473833b9a476ffa55b937b211a7aa1 (
plain)
1
2
3
4
5
|
<div class="text-sm border border-2 border-gray-700 rounded p-2 w-full">
<%= @text %>
<p>Costs:<strong> <%= @activity.costs&.join(", ") || "None" %></strong> </p>
<p>Requires:<strong> <%= @activity.requirements&.join(", ") || "None" %></strong> </p>
</div>
|