zulip/templates/zerver/app/about-zulip.html
Anders Kaseorg 668b5137b0 version: Display Zulip version in About Zulip dialog.
We record Git details about the merge-base with upstream branches in
the zulip-git-version file, if the upstream repository is available.

Note that the first Git upgrade after merging the parent commit will
not include the merge-base details, since the upstream repository will
not have been available.

Co-authored-by: Tim Abbott <tabbott@zulip.com>
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-05-13 11:36:12 -07:00

31 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

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.

<div id="about-zulip" class="overlay flex new-style" tabindex="-1" role="dialog" data-overlay="about-zulip" aria-hidden="true">
<div class="overlay-content modal-bg">
<button type="button" class="exit" aria-label="{{ _('Close') }}"><span aria-hidden="true">&times;</span></button>
<div class="modal-body">
<div class="about-zulip-logo">
<img src="/static/images/logo/zulip-org-logo.svg" alt="" />
</div>
<p>
This is an installation of <a target="_blank" rel="noopener noreferrer"
href="https://zulip.com">Zulip</a>.
</p>
<p>
Zulip Server version {{zulip_version}}
<i class="fa fa-copy tippy-zulip-tooltip" data-tippy-content="Copy version" data-tippy-placement="right" data-clipboard-text="{{zulip_version}}"></i>
{% if zulip_merge_base and zulip_version != zulip_merge_base %}
<br />
Forked from upstream at {{zulip_merge_base}}
<i class="fa fa-copy tippy-zulip-tooltip" data-tippy-content="Copy version" data-tippy-placement="right" data-clipboard-text="{{zulip_merge_base}}"></i>
{% endif %}
</p>
<p>
Copyright 20122015 Dropbox, Inc., 20152021 Kandra Labs, Inc., and contributors.
</p>
<p>
Zulip is <a target="_blank" rel="noopener noreferrer" href="https://github.com/zulip/zulip#readme">open-source software</a>,
distributed under the Apache 2.0 license.
</p>
</div>
</div>
</div>