Skip to content

Commit f5cb645

Browse files
committed
Make dashboard instance URLs clickable
1 parent d3a271d commit f5cb645

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

src/web/templates/dashboard.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ <h4>{{ inst.name }}</h4>
1818
<p>{{ inst.arr_type | capitalize }}</p>
1919
</hgroup>
2020
</header>
21-
<p><small>{{ inst.base_url }}</small></p>
21+
<p>
22+
<small>
23+
<a href="{{ inst.base_url }}" target="_blank" rel="noopener noreferrer">
24+
{{ inst.base_url }}
25+
</a>
26+
</small>
27+
</p>
2228
</article>
2329
{% endfor %}
2430
</div>
@@ -56,4 +62,4 @@ <h3>Recent Activity</h3>
5662

5763
{% block scripts %}
5864
<script src="{{ request.url_for('static', path='dashboard.js') }}"></script>
59-
{% endblock %}
65+
{% endblock %}

0 commit comments

Comments
 (0)