2020-10-24 02:13:02 +00:00
{% extends 'base.html' %}
2021-09-11 22:44:15 +00:00
{% block head %}
2021-09-16 22:41:29 +00:00
< meta http-equiv = "refresh" content = "60;url=/" / >
2021-09-11 22:44:15 +00:00
{% endblock %}
2020-10-24 02:13:02 +00:00
{% block content %}
2020-10-23 20:10:32 +00:00
2020-10-24 02:13:02 +00:00
< div class = "card-body p-0" >
<!-- Nested Row within Card Body -->
< div class = "row" >
< div class = "col-lg-6 d-none d-lg-block bg-index-image" > < / div >
< div class = "col-lg-6" >
< div class = "p-5" >
< div class = "text-center" >
< h2 class = "h1 text-gray-900 mb-4" > < small > Welcome to< / small > < br > BAPSicle!< / h2 >
< p class = "h4" > The next gen Broadcast and Presenting Suite server!< / p >
< / div >
< hr >
< p > Wanted the actual playout controller?< / p >
2021-04-16 19:30:50 +00:00
< a href = "/presenter/" class = "btn btn-primary btn-user btn-block" >
Open BAPS Presenter
2020-10-24 02:13:02 +00:00
< / a >
2021-09-11 22:44:15 +00:00
< hr >
{% if data.alert_count > 0 %}
< div class = "alert alert-danger" role = "alert" >
< h4 class = "alert-heading" > Something's up! < a href = "/alerts" class = "btn btn-sm btn-danger float-right" > < span class = "badge badge-light mr-1" > {{data.alert_count}}< / span > View Alerts< / a > < / h4 >
< p > BAPSicle is having some issues. Please review the alerts page.
{% else %}
< div class = "alert alert-success" role = "alert" >
< h4 class = "alert-heading" > We're all good!< / h4 >
< p > BAPSicle seems to be running well. If this doesn't seem to be the case, try restarting or taking a closer look at the logs.< / p >
{% endif %}
< hr >
< a href = "/logs" class = "btn btn-success" > Logs< / a >
< a href = "/restart" class = "btn btn-info" > Restart< / a >
2021-09-21 21:52:27 +00:00
< a href = "/quit" class = "btn btn-danger" > Quit< / a >
2021-09-11 22:44:15 +00:00
< / div >
2020-10-24 02:13:02 +00:00
< hr >
2021-04-27 20:48:17 +00:00
< p > Version: {{data.server_version}} - Build: {{data.server_build}} - Branch: {{data.server_branch}}< / p >
2021-04-11 18:02:19 +00:00
< p > Server Name: {{data.server_name}}< / p >
2021-04-27 22:02:03 +00:00
< hr >
< small >
< a href = "https://www.vecteezy.com/free-vector/island" > Island Vectors by Vecteezy< / a > , < a href = "https://www.flaticon.com/free-icon/recording_3172492" > Recording Vector from Flaticon< / a >
< / small >
2020-10-24 02:13:02 +00:00
< / div >
< / div >
< / div >
< / div >
2021-04-11 18:02:19 +00:00
{% endblock %}