Files
notifications-admin/app/templates/views/dashboard/write-first-messages.html
T

17 lines
600 B
HTML
Raw Normal View History

2016-07-01 11:07:44 +01:00
{% from "components/banner.html" import banner_wrapper %}
<h2 class="heading-medium">Get started</h2>
<nav class="grid-row">
<div class="column-half">
{% call banner_wrapper(type="mode") %}
<a href="{{ url_for('.choose_template', service_id=current_service.id, template_type='email') }}">Write an email
{% endcall %}
</div>
<div class="column-half">
{% call banner_wrapper(type="mode") %}
2016-07-04 14:28:54 +01:00
<a href="{{ url_for('.choose_template', service_id=current_service.id, template_type='sms') }}">Write a text message</a>
2016-07-01 11:07:44 +01:00
{% endcall %}
</div>
</nav>