This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% if current_account.credit_card_required? %} | |
| {% if current_account.credit_card_stored? %} | |
| <a href="/xxxx">API Credentials</a> | | |
| {% endif %} | |
| {% else %} | |
| <a href="/xxxx">API Credentials</a> | | |
| {% endif %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% for service in provider.services %} | |
| . | |
| . | |
| . | |
| {% endfor %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% for service in provider.services %} | |
| <div class="service-column"> | |
| <p>{{ service.name }}</p> | |
| <p>{{ service.description }}</p> | |
| . | |
| . | |
| . | |
| </div> | |
| {% endfor %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% for service in provider.services %} | |
| <div class="service-column"> | |
| <p>{{ service.name }}</p> | |
| <p>{{ service.description }}</p> | |
| {% unless service.subscribed? %} | |
| <a href="{{ urls.signup }}?{{ service | to_param }}">Signup to {{ service.name }}</a> | |
| {% endunless %} | |
| </ div> | |
| {% endfor %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% unless service.subscribed? %} | |
| <a href="{{ urls.signup }}?{{ service | to_param }}">Signup to {{ service.name }}</a> | |
| {% endunless %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .service-column { | |
| float: left; | |
| margin-left: 10%; | |
| width: 45%; | |
| } | |
| .service-column:first-child { | |
| margin-left: 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {{ if current_account.extra_fields.partner == 'true' }} | |
| // content only accessible to partners | |
| {{ endif }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {{ unless current_account.extra_fields.partner == 'true' }} | |
| // content forbidden for partners | |
| {{ endunless }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {{ if current_user }} | |
| // only visible if the user is logged in | |
| {{ endif }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| smtpapi._domainkey.YOURDOMAIN.com CNAME dkim.sendgrid.net | |
| smtpapi._domainkey.APIMAIL.YOURDOMAIN.com CNAME dkim.sendgrid.net | |
| o1.APIMAIL.YOURDOMAIN.com A 75.126.253.120 |