24 lines
788 B
Plaintext
24 lines
788 B
Plaintext
<table class="table table-bordered">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<% if partner.logo.attached? %>
|
|
<%= image_tag partner.logo, height: 40 %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<td><%= raw simple_format(partner.description) %></td>
|
|
<td>
|
|
<% if @dotation.blank? %>
|
|
<button type="button" class="btn btn-block btn-success">Zamów bezpłatną konsultację</button>
|
|
<% else %>
|
|
<%= link_to 'Zamów bezpłatną konsultację', "/home/order_meeting?d=#{@dotation.safe_id}&div_id=#{div_id}", class: 'btn btn-block btn-navy', remote: true %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|