mirror of https://github.com/zulip/zulip.git
17 lines
753 B
HTML
17 lines
753 B
HTML
{% load i18n %}
|
|
<div class="modal hide" id="tutorial-finale" tabindex="-1" role="dialog"
|
|
aria-labelledby="tutorial-finale-label" aria-hidden="true">
|
|
<div class="modal-header">
|
|
<h3 id="tutorial-finale-label">{% blocktrans %}Welcome to {{ product_name }}{% endblocktrans %}</h3>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>{% blocktrans %}Streams, topics, and narrowing make {{ product_name }} conversations
|
|
efficient and productive.{% endblocktrans %}</p>
|
|
|
|
<p>{% blocktrans %}That's all there is to it, so let's get started!{% endblocktrans %}</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-primary" type="submit" id="tutorial-get-started">{% blocktrans %}Get started{% endblocktrans %}</button>
|
|
</div>
|
|
</div>
|