Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Drop extraneous div
Browse files Browse the repository at this point in the history
No longer necessary post-#3718.
  • Loading branch information
chadwhitacre committed Aug 31, 2015
1 parent 10d9456 commit b3f87fc
Showing 1 changed file with 62 additions and 64 deletions.
126 changes: 62 additions & 64 deletions www/about/stats.spt
Original file line number Diff line number Diff line change
Expand Up @@ -216,70 +216,68 @@ def out():
<p>On average, people who tip, tip ${{ "%.2f" % average_tip }} each to
{{ other_people }}. </p>

<div class="two-column">
<div class="chart-wrapper">
<a name="users"></a>
<h2>Total Users</h2>
<p class="note">Anyone who's ever created an account on Gratipay</p>
<div class="chart" data-chart="total_users"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper">
<a name="active"></a>
<h2>Active Users</h2>
<p class="note">Users that gave and/or received money within Gratipay (per week)</p>
<div class="chart" data-chart="active_users"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper">
<a name="cumulative-gifts"></a>
<h2>Total Gifts ($)</h2>
<p class="note">Money transferred within Gratipay (cumulative)</p>
<div class="chart" data-chart="total_gifts"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper">
<a name="gifts"></a>
<h2>Weekly Gifts ($)</h2>
<p class="note">Money transferred within Gratipay (per week)</p>
<div class="chart" data-chart="weekly_gifts"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper newline">
<a name="charges"></a>
<h2>Charges ($)</h2>
<p class="note">Money moved into Gratipay</p>
<div class="chart" data-chart="charges"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper">
<a name="withdrawals"></a>
<h2>Withdrawals ($)</h2>

<p class="note">Money withdrawn from Gratipay</p>

<div class="chart" data-chart="withdrawals"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper">
<a name="number-by-amount"></a>
<h2>Number of Tips by Amount</h2>
<div class="chart" data-chart="ntips"></div>
<div class="x-axis">tip amount ($)</div>
</div>

<div class="chart-wrapper">
<a name="sum-by-amount"></a>
<h2>Sum of Tips by Amount ($)</h2>
<div class="chart" data-chart="sum"></div>
<div class="x-axis">tip amount ($)</div>
</div>
<div class="chart-wrapper">
<a name="users"></a>
<h2>Total Users</h2>
<p class="note">Anyone who's ever created an account on Gratipay</p>
<div class="chart" data-chart="total_users"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper">
<a name="active"></a>
<h2>Active Users</h2>
<p class="note">Users that gave and/or received money within Gratipay (per week)</p>
<div class="chart" data-chart="active_users"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper">
<a name="cumulative-gifts"></a>
<h2>Total Gifts ($)</h2>
<p class="note">Money transferred within Gratipay (cumulative)</p>
<div class="chart" data-chart="total_gifts"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper">
<a name="gifts"></a>
<h2>Weekly Gifts ($)</h2>
<p class="note">Money transferred within Gratipay (per week)</p>
<div class="chart" data-chart="weekly_gifts"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper newline">
<a name="charges"></a>
<h2>Charges ($)</h2>
<p class="note">Money moved into Gratipay</p>
<div class="chart" data-chart="charges"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper">
<a name="withdrawals"></a>
<h2>Withdrawals ($)</h2>

<p class="note">Money withdrawn from Gratipay</p>

<div class="chart" data-chart="withdrawals"></div>
<div class="x-axis">weeks</div>
</div>

<div class="chart-wrapper">
<a name="number-by-amount"></a>
<h2>Number of Tips by Amount</h2>
<div class="chart" data-chart="ntips"></div>
<div class="x-axis">tip amount ($)</div>
</div>

<div class="chart-wrapper">
<a name="sum-by-amount"></a>
<h2>Sum of Tips by Amount ($)</h2>
<div class="chart" data-chart="sum"></div>
<div class="x-axis">tip amount ($)</div>
</div>

{% endblock %}
Expand Down

0 comments on commit b3f87fc

Please sign in to comment.