mirror of
				https://gitea.augustin64.fr/piair/MsRewards-Reborn.git
				synced 2025-11-04 07:33:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% block left_pannel %}
 | 
						|
 | 
						|
<table>
 | 
						|
    <tr>
 | 
						|
        <td>
 | 
						|
            <button class="unselected" onclick="location.href = '/override';">override</button>
 | 
						|
        </td>
 | 
						|
    </tr>
 | 
						|
    <tr>
 | 
						|
        <td>
 | 
						|
            <button class="unselected" onclick="location.href = '/config';">config</button>
 | 
						|
        </td>  
 | 
						|
    </tr>
 | 
						|
    <tr>
 | 
						|
        <td>
 | 
						|
            <button class="unselected" onclick="location.href = '/discord';">discord</button>
 | 
						|
        </td>
 | 
						|
    </tr>
 | 
						|
    <tr>
 | 
						|
        <td>
 | 
						|
            <button class="unselected" onclick="location.href = '/proxy';">proxy</button>
 | 
						|
        </td>  
 | 
						|
    </tr>
 | 
						|
    <tr>
 | 
						|
        <td>
 | 
						|
            <button class="unselected" onclick="location.href = '/logs';">logs</button>
 | 
						|
        </td>  
 | 
						|
    </tr>
 | 
						|
    <tr>
 | 
						|
        <td>
 | 
						|
            <button class="selected" onclick="location.href = '/grafana';">stats</button>
 | 
						|
        </td>  
 | 
						|
    </tr>
 | 
						|
    <tr>
 | 
						|
        <td>
 | 
						|
            <button class="unselected" onclick="location.href = '/settings';">settings</button>
 | 
						|
        </td>
 | 
						|
    </tr>
 | 
						|
</table>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
 | 
						|
{%if not current_user.is_authenticated %}
 | 
						|
    <button class="unselected" onclick="location.href = '/login';">login</button>
 | 
						|
{% else %}
 | 
						|
    <iframe src="/grafana?orgId=1&kiosk" width="100%" height="100%" frameborder="0"></iframe>
 | 
						|
{% endif %}
 | 
						|
 | 
						|
{%endblock %} |