mirror of
				https://git.collinwebdesigns.de/oscar.krause/fastapi-dls.git
				synced 2025-10-26 18:05:28 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			828 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			828 B
		
	
	
	
		
			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="deleteOrigins()">delete all</button>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div id="origins" class="mt-3"></div>
 | 
						|
</div>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block scripts %}
 | 
						|
{{ super() }}
 | 
						|
<script type="application/javascript">
 | 
						|
    const origins = document.getElementById('origins')
 | 
						|
    fetchOriginsWithLeases(origins)
 | 
						|
</script>
 | 
						|
{% endblock %}
 |