Ghost/ghost/admin/app/templates/offers.hbs
2021-10-04 13:58:58 +02:00

72 lines
3.6 KiB
Handlebars
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<section class="gh-canvas">
<GhCanvasHeader class="gh-canvas-header break tablet members-header">
<h2 class="gh-canvas-title" data-test-screen-title>Offers</h2>
<section class="view-actions">
<LinkTo @route="offer" class="gh-btn gh-btn-primary"><span>New offer</span></LinkTo>
</section>
</GhCanvasHeader>
<section class="view-container">
{{#if this.offersExist}}
<table class="gh-list">
<tr class="gh-list-row header">
<th class="gh-list-header">2 offers</th>
<th class="gh-list-header">Tier</th>
<th class="gh-list-header">Terms</th>
<th class="gh-list-header">Redemptions</th>
<th class="gh-list-header gh-list-cellwidth-10"></th>
</tr>
<tr class="gh-list-row">
<LinkTo @route="offer" class="gh-list-data">
<h3>Black Friday 2021</h3>
</LinkTo>
<LinkTo @route="offer" class="gh-list-data">
<span>Bronze</span> <span class="midgrey">- Monthly</span>
</LinkTo>
<LinkTo @route="offer" class="gh-list-data">
<span class="green fw6">20% OFF</span> <span class="midgrey">  Once</span>
</LinkTo>
<LinkTo @route="offer" class="gh-list-data">
<span class="midgrey">155</span>
</LinkTo>
<LinkTo @route="tag" @model={{@tag}} class="gh-list-data gh-list-cellwidth-10 gh-tag-list-chevron" @title="Edit tag">
<div class="flex items-center justify-end w-100 h-100">
<span class="nr2 lh-1">{{svg-jar "arrow-right" class="w6 h6 fill-midgrey pa1"}}</span>
</div>
</LinkTo>
</tr>
<tr class="gh-list-row">
<LinkTo @route="offer" class="gh-list-data">
<h3>Intro to Gold</h3>
</LinkTo>
<LinkTo @route="offer" class="gh-list-data">
<span>Gold</span> <span class="midgrey">- Monthly</span>
</LinkTo>
<LinkTo @route="offer" class="gh-list-data">
<span class="green fw6">30% OFF</span> <span class="midgrey">  For 3 months</span>
</LinkTo>
<LinkTo @route="offer" class="gh-list-data">
<span class="midgrey">94</span>
</LinkTo>
<LinkTo @route="tag" @model={{@tag}} class="gh-list-data gh-list-cellwidth-10 gh-tag-list-chevron" @title="Edit tag">
<div class="flex items-center justify-end w-100 h-100">
<span class="nr2 lh-1">{{svg-jar "arrow-right" class="w6 h6 fill-midgrey pa1"}}</span>
</div>
</LinkTo>
</tr>
</table>
{{else}}
<div class="gh-offers gh-offers-list-cta">
{{svg-jar "discount-bubble" class="discount-bubble"}}
<h4>Provide special offers to new signups</h4>
<p>
Boost your subscriptions by creating targeted discounts to potential members.
</p>
<LinkTo @route="offer" class="gh-btn gh-btn-green gh-btn-icon">
<span>{{svg-jar "add"}} Add offer</span>
</LinkTo>
</div>
{{/if}}
</section>
</section>