All checks were successful
Build And Test / build-and-push (push) Successful in 5m17s
17 lines
560 B
HTML
17 lines
560 B
HTML
{% extends "components/base.html" %}
|
|
|
|
{% block title %}Landing Page{% endblock %}
|
|
|
|
{% block main_area %}
|
|
<article class="pt-3">
|
|
<h2 class="fw-bold pb-2">Grafana</h2>
|
|
<!-- Grafana IFrame -->
|
|
<div class="ratio ratio-16x9">
|
|
{% if request.user.url_grafana_dashboard_01 %}
|
|
<iframe src="{{request.user.url_grafana_dashboard_01}}" width="100%" height="800" frameborder="0" allowfullscreen></iframe>
|
|
{% else %}
|
|
<h3 class="text-danger">접속 후 Profile에 Dashboard URL을 등록하세요.</h3>
|
|
{% endif %}
|
|
</div>
|
|
</article>
|
|
{% endblock %} |