20 lines
		
	
	
		
			No EOL
		
	
	
		
			598 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			No EOL
		
	
	
		
			598 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| {% from 'utils.html' import custom_render_form_row,make_tabs %}
 | |
| {% from 'bootstrap/utils.html' import render_icon %}
 | |
| {% from 'bootstrap/form.html' import render_form, render_field, render_form_row %}
 | |
| 
 | |
| {% block app_content %}
 | |
| 
 | |
| <h2><a href={{info.LocalAddress}}>Jellyfin</a> v{{info.Version}}</h2>
 | |
| {% if status.HasUpdateAvailable %}
 | |
|     <h3>Update available</h3>
 | |
| {% endif %}
 | |
| {% if status.HasPendingRestart %}
 | |
|     <h3>Restart pending</h3>
 | |
| {% endif %}
 | |
| 
 | |
| <img src={{cfg.jellyfin_url}}/Items/{{item.Id}}/Images/Art>
 | |
| 
 | |
| <pre>{{item|pformat}}</pre>
 | |
| 
 | |
| {% endblock %} |