Add placeholder for users without any campaigns

master
Sven Slootweg 11 years ago
parent 07ae0efce8
commit 033335b5e7

@ -447,6 +447,11 @@ div.logo.thumb
* DASHBOARD *
**************************************/
td.placeholder
{
padding: 16px 19px;
}
td.payment-methods
{
max-width: 240px;

@ -18,6 +18,11 @@
<th class="icon"><img src="/static/images/icons/projected.png" alt="Estimate of real donations per month, based on donation rate" title="Estimate of real donations per month, based on donation rate"></th>
<th>Payment methods</th>
</tr>
{%if isempty|campaigns == true}
<tr>
<td colspan="7" class="placeholder">You do not currently have any campaigns.</td>
</tr>
{%else}
{%foreach campaign in campaigns}
<tr class="clickable" data-url="/dashboard/{%?campaign[urlname]}">
<td class="name">{%?campaign[name]}</td>
@ -49,6 +54,7 @@
</td>
</tr>
{%/foreach}
{%/if}
<tr class="total">
<td class="meta" colspan="2">Total</td>
<td class="numeric">{%?total-subscribers}</td>

Loading…
Cancel
Save