mirror of https://github.com/zulip/zulip.git
analytics: Use gear icon as realm support link on installation activity.
This commit is contained in:
parent
e8fed998ce
commit
4e577119b4
|
@ -128,7 +128,7 @@ def realm_support_link(realm_str: str) -> Markup:
|
|||
support_url = reverse("support")
|
||||
query = urlencode({"q": realm_str})
|
||||
url = append_url_query_string(support_url, query)
|
||||
return Markup('<a href="{url}">{realm_str}</a>').format(url=url, realm_str=realm_str)
|
||||
return Markup('<a href="{url}"><i class="fa fa-gear"></i></a>').format(url=url)
|
||||
|
||||
|
||||
def realm_url_link(realm_str: str) -> Markup:
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<ul>
|
||||
<li><strong><i class="fa fa-home"></i></strong> - realm's Zulip</li>
|
||||
<li><strong><i class="fa fa-pie-chart"></i></strong> - realm's stats page</li>
|
||||
<li><strong>realm</strong> - realm's support page</li>
|
||||
<li><strong><i class="fa fa-gear"></i></strong> - realm's support page</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><strong>DAU</strong> (daily active users) - users active in last 24hr</li>
|
||||
|
|
Loading…
Reference in New Issue