mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
Shopping List finished
This commit is contained in:
parent
377291fdf1
commit
fdd367de8d
@ -18,3 +18,9 @@ python3 manage.py migrate
|
||||
-- Django calling Rest Services ?
|
||||
python3 manage.py runserver
|
||||
|
||||
-- Django DB Initialisation
|
||||
# creating the model
|
||||
python3 manage.py makemigrations
|
||||
# creating the table
|
||||
python3 manage.py migrate
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
demo/db.sqlite3
BIN
demo/db.sqlite3
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,3 +1,5 @@
|
||||
from django.contrib import admin
|
||||
from migration.models import ShoppingItem
|
||||
|
||||
# Register your models here.
|
||||
admin.site.register(ShoppingItem)
|
||||
|
33
demo/migration/migrations/0001_initial.py
Normal file
33
demo/migration/migrations/0001_initial.py
Normal file
@ -0,0 +1,33 @@
|
||||
# Generated by Django 5.0.2 on 2024-02-23 10:59
|
||||
|
||||
import datetime
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Product',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('title', models.CharField(max_length=120)),
|
||||
('content', models.TextField(blank=True, null=True)),
|
||||
('price', models.DecimalField(decimal_places=2, default=99.99, max_digits=15)),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='ShoppingItem',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('created_at', models.DateField(default=datetime.date.today)),
|
||||
('name', models.CharField(max_length=120)),
|
||||
('done', models.BooleanField(default=False)),
|
||||
],
|
||||
),
|
||||
]
|
Binary file not shown.
@ -1,6 +1,15 @@
|
||||
from django.db import models
|
||||
from datetime import date
|
||||
|
||||
# Create your models here.
|
||||
|
||||
class ShoppingItem(models.Model):
|
||||
created_at = models.DateField(default=date.today)
|
||||
name = models.CharField(max_length=120)
|
||||
done = models.BooleanField(default=False)
|
||||
|
||||
def __str__(self):
|
||||
return str(self.id) + ' - ' + self.name
|
||||
|
||||
class Product(models.Model):
|
||||
title = models.CharField(max_length=120)
|
||||
content= models.TextField(blank=True, null=True)
|
||||
|
@ -7,26 +7,28 @@
|
||||
<style>
|
||||
header {
|
||||
background-color: green;
|
||||
display: flex;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
background-color: #345688;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
button {
|
||||
height: 40px;
|
||||
width: 40 px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.list-item {
|
||||
font-size: 32 px;
|
||||
background-color: white;
|
||||
height: 60px;
|
||||
height: 30px;
|
||||
box-shadow: 2px 2px 2px rgba(0,0,0,0.01);
|
||||
display: flex;
|
||||
alirgn-items: center;
|
||||
right: 16px;
|
||||
bottom: 60px;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
@ -34,14 +36,25 @@
|
||||
<header>
|
||||
<h1>Migration Apis</h1>
|
||||
</header>
|
||||
{% for item in all_items %}
|
||||
<div class="list-item">
|
||||
<input type="checkbox"> Element 1
|
||||
<input type="checkbox"> {{item.name}}
|
||||
</div>
|
||||
<div class="list-item">
|
||||
<input type="checkbox"> Element 2
|
||||
</div>
|
||||
<button>
|
||||
+
|
||||
</button>
|
||||
{% 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>
|
||||
|
@ -1,5 +1,5 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
from migration import views
|
||||
|
||||
urlpatterns = [
|
||||
path("", views.index, name= "index"),
|
||||
|
@ -1,14 +1,17 @@
|
||||
from django.shortcuts import render
|
||||
from django.http import HttpResponse, JsonResponse
|
||||
from migration.models import ShoppingItem
|
||||
|
||||
def index(response):
|
||||
return HttpResponse("Welcome to siMed Migration")
|
||||
|
||||
def migration_home(request):
|
||||
return render(request,'migration.html')
|
||||
if request.method == 'POST':
|
||||
print('Received Data',request.POST['itemName'])
|
||||
ShoppingItem.objects.create(name= request.POST['itemName'])
|
||||
all_items = ShoppingItem.objects.all()
|
||||
return render(request,'migration.html',{'all_items': all_items})
|
||||
|
||||
|
||||
|
||||
def api_home(request,endpoint, params={"message": "Your JSON Repsonse"}):
|
||||
body = request.body
|
||||
data = {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user