mirror of
				https://gitea.publichub.eu/oscar.krause/fastapi-dls.git
				synced 2025-11-04 13:36:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'layouts/bootstrap-dashboard.html' %}
 | 
						|
 | 
						|
{% block title %}
 | 
						|
<title>Origins</title>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <div>
 | 
						|
        <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
 | 
						|
            <h1 class="h2">Origins <small>with leases</small></h1>
 | 
						|
            <div class="btn-toolbar mb-2 mb-md-0">
 | 
						|
                <div class="btn-group me-2">
 | 
						|
                    <button type="button" class="btn btn-sm btn-outline-danger" onclick="deleteOrigin().finally(() => load())">
 | 
						|
                        delete origin
 | 
						|
                    </button>
 | 
						|
                    <button type="button" class="btn btn-sm btn-outline-danger" onclick="deleteOriginsWrapper()">
 | 
						|
                        delete all
 | 
						|
                    </button>
 | 
						|
                </div>
 | 
						|
 | 
						|
                <button type="button" class="btn btn-sm btn-outline-secondary" onclick="load()" title="refresh">
 | 
						|
                    <i class="bi bi-arrow-clockwise"></i>
 | 
						|
                </button>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <div id="origins" class="mt-3"></div>
 | 
						|
    </div>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block scripts %}
 | 
						|
{{ super() }}
 | 
						|
    <script type="application/javascript">
 | 
						|
        function load() {
 | 
						|
            const origins = document.getElementById('origins')
 | 
						|
            fetchOriginsWithLeases(origins)
 | 
						|
        }
 | 
						|
 | 
						|
        load()
 | 
						|
 | 
						|
        function deleteOriginsWrapper() {
 | 
						|
            const response = confirm('Are you sure you want to delete all origins and their leases?');
 | 
						|
 | 
						|
            if (response)
 | 
						|
                deleteOrigins().finally(() => load())
 | 
						|
        }
 | 
						|
    </script>
 | 
						|
{% endblock %}
 |