django2/demo/migration/templates/migration.html
Peter Kotyczka 679d7d1b58 smc
2024-03-24 22:58:33 +01:00

61 lines
1.7 KiB
HTML
Executable File

<html>
<head>
<title>Migration</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<style>
header {
background-color: green;
display: flex;
padding-left: 20px;
}
body {
font-family: 'Open Sans', sans-serif;
background-color: white;
}
button {
height: 40px;
width: 40 px;
border-radius: 50%;
}
.list-item {
font-size: 32 px;
background-color: white;
height: 30px;
box-shadow: 2px 2px 2px rgba(0,0,0,0.01);
display: flex;
align-items: center;
}
</style>
</head>
<body>
<header>
<h1>Migration Apis</h1>
</header>
{% for item in all_items %}
<div class="list-item">
<input type="checkbox"> {{item.name}}
</div>
{% endfor %}
<button onclick="addItem()">+</button>
<script>
function addItem() {
let itemName = prompt('Neues Element hinzufügen');
let token = '{{csrf_token}}';
let formData = new FormData();
formData.append('itemName',itemName);
formData.append('csrfmiddlewaretoken',token);
fetch('/migration/', {
method: 'POST',
body: formData
});
window.location.reload();
}
</script>
</body>
</html>