2019-02-11 14:00:32 -06:00
|
|
|
<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
|
|
|
|
<%- @location_array = []
|
|
|
|
@location_array.push(profile.city) if profile.city.present?
|
|
|
|
@location_array.push(profile.state_code) if profile.state_code.present?
|
|
|
|
-%>
|
2018-11-19 13:53:15 -06:00
|
|
|
<section class='box' style="font-style: italic">
|
|
|
|
<div class="well" style="padding-left:16px;">
|
2019-02-11 14:00:32 -06:00
|
|
|
<h4><%= profile.name %><%- if @location_array.any? -%>
|
|
|
|
<small>(<%= @location_array.join(', ') %>)</small><%- end -%>
|
2019-01-23 11:07:07 -06:00
|
|
|
</h4>
|
2018-11-08 15:02:35 -06:00
|
|
|
<blockquote><p>"<%= reason_for_supporting %>"</p></blockquote></div>
|
2018-05-30 19:16:24 +02:00
|
|
|
</section>
|