houdini/app/views/nonprofits/supporters/_main_panel.html.erb
Bradley M. Kuhn 22adb4d5fd Relicense all .erb files under new project license.
The primary license of the project is changing to:
  AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later

with some specific files to be licensed under the one of two licenses:
   CC0-1.0
   LGPL-3.0-or-later

This commit is one of the many steps to relicense the entire codebase.

Documentation granting permission for this relicensing (from all past
contributors who hold copyrights) is on file with Software Freedom
Conservancy, Inc.
2018-03-25 15:10:40 -04:00

80 lines
2.6 KiB
Text

<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
<div class='mainPanel'>
<section id='paginationScroll' style='display: none;'>
<!--= show_if (length supporters.data) -->
<table class='table--plaid clickable tour-supporters'>
<thead>
<tr>
<th if-side-panel='hide'></th>
<th class='th--name'>
<a class='sortArrows left' sort='none'>Name</a>
<!--= on 'click' (apply_sort_filter 'sort_name' 'desc' 'asc') -->
</th>
<th if-side-panel='hide'>
<a class='sortArrows left' sort='none'>Total</a>
<!--= on 'click' (apply_sort_filter 'sort_contributed' 'desc' 'asc') -->
</th>
<th if-side-panel='hide'>
<a class='sortArrows left' sort='none'>Last Payment</a>
<!--= on 'click' (apply_sort_filter 'sort_last_payment' 'desc' 'asc') -->
</th>
<th if-side-panel='hide'>Tags</th>
</tr>
</thead>
<tbody>
<tr>
<!--= repeat supporters.data -->
<td class='td--action' if-side-panel='hide'>
<input type='checkbox' class='supporterRowCheckbox'>
<!--= set_attr 'id' this.id -->
<!--= on 'change' (toggle_supporters_checkbox this.id) -->
<!--= checked_if this.is_checked -->
<label></label>
<!--= set_attr 'for' this.id -->
</td>
<td class='td--name' if-side-panel='hover-marker'>
<!--= on 'click' (supporter_details.toggle_panel this) -->
<!--= put (any this.name (cat 'Supporter #' this.id) -->
<p class='u-color--grey u-marginBottom--0'>
<small><!--= put this.email --></small>
</p>
</td>
<td if-side-panel='hide' class='table-bigNum'>
<!--= on 'click' (supporter_details.toggle_panel this) -->
<span class='dollar'>$</span>
<!--= put (cents_to_dollars this.total_raised) -->
</td>
<td if-side-panel='hide' style='width: 170px'>
<!--= put this.last_contribution -->
</td>
<td if-side-panel='hide'>
<!--= on 'click' (supporter_details.toggle_panel this) -->
<span class='tag--red u-floatL'>
<!--= show_if this.is_unsubscribed_from_emails -->
Unsubscribed
</span>
<span class='tag u-floatL'>
<!--= repeat this.tags -->
<!--= put this -->
</span>
<span class='tag--trans u-floatL'>
<!--= show_if this.tags_remaining -->
<!--= put this.tags_remaining --> more
</span>
</td>
</tr>
</tbody>
</table>
<%= render 'components/show_more', scope: 'supporters' %>
</section>
</div>