remove tmp route_template
This commit is contained in:
parent
675b1f8ef1
commit
cae2851839
|
@ -1,25 +0,0 @@
|
||||||
"""gpp URL Configuration
|
|
||||||
|
|
||||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
||||||
https://docs.djangoproject.com/en/2.2/topics/http/urls/
|
|
||||||
Examples:
|
|
||||||
Function views
|
|
||||||
1. Add an import: from my_app import views
|
|
||||||
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
||||||
Class-based views
|
|
||||||
1. Add an import: from other_app.views import Home
|
|
||||||
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
||||||
Including another URLconf
|
|
||||||
1. Import the include() function: from django.urls import include, path
|
|
||||||
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
||||||
"""
|
|
||||||
from django.contrib import admin
|
|
||||||
from django.urls import include, path
|
|
||||||
|
|
||||||
urlpatterns = [
|
|
||||||
#path('', include('port.urls', namespace='index')),
|
|
||||||
path('port/', include('port.urls.port', namespace='port')),
|
|
||||||
path('person/', include('port.urls.person', namespace='person')),
|
|
||||||
path('boat/', include('port.urls.boat', namespace='boat')),
|
|
||||||
path('admin/', admin.site.urls),
|
|
||||||
]
|
|
|
@ -1,49 +0,0 @@
|
||||||
from django.shortcuts import render
|
|
||||||
from django.http import HttpResponse
|
|
||||||
|
|
||||||
from pprint import pprint
|
|
||||||
|
|
||||||
from .models import *
|
|
||||||
from .forms import *
|
|
||||||
|
|
||||||
def index(request):
|
|
||||||
return HttpResponse("Hello, world.")
|
|
||||||
|
|
||||||
def ports_status(request):
|
|
||||||
"""
|
|
||||||
res = ''
|
|
||||||
ports = Port.objects.all()
|
|
||||||
li = lambda x: '<li>' + str(x)
|
|
||||||
res = ''.join(map(li, ports))
|
|
||||||
res = '<html><body><ul>' + res + '</ul></body></html>'
|
|
||||||
return HttpResponse(res)
|
|
||||||
"""
|
|
||||||
|
|
||||||
return render(request, 'port/ports_status.html', {'ports': Port.objects})
|
|
||||||
|
|
||||||
def add_person(request):
|
|
||||||
"""
|
|
||||||
[GET] Renders the view to help people add persons
|
|
||||||
[POST] Adds person
|
|
||||||
"""
|
|
||||||
forms = {'person':None, 'address':None}
|
|
||||||
|
|
||||||
if (request.method == 'POST'):
|
|
||||||
forms.update({'person':PersonForm(request.POST)})
|
|
||||||
if (forms.get('person').is_valid()):
|
|
||||||
Person.objects.create(forms.get('person').cleaned_data)
|
|
||||||
return list_persons(request)
|
|
||||||
|
|
||||||
# Address handlinG
|
|
||||||
forms.update({'person':PersonForm(request.POST)})
|
|
||||||
if (forms.get('person').is_valid()):
|
|
||||||
Person.objects.create(forms.get('person').cleaned_data)
|
|
||||||
return list_persons(request)
|
|
||||||
|
|
||||||
else:
|
|
||||||
forms.update({'person':PersonForm()})
|
|
||||||
|
|
||||||
return render(request, 'person/add.html', {'form':forms})
|
|
||||||
|
|
||||||
def list_persons(request):
|
|
||||||
return render(request, 'person/list.html', {'persons': Person.objects})
|
|
|
@ -1,12 +0,0 @@
|
||||||
{% extends "base.html" %}
|
|
||||||
{% block content %}
|
|
||||||
<form action="{% url 'person:add' %}" method="post">
|
|
||||||
{% csrf_token %}
|
|
||||||
<fieldset>
|
|
||||||
<!-- TO IMPLEMENT -->
|
|
||||||
<legend>Person</legend>
|
|
||||||
{{ form.person }}
|
|
||||||
</fieldset>
|
|
||||||
<input type="submit" value="add"/>
|
|
||||||
</form>
|
|
||||||
{% endblock %}
|
|
|
@ -1,9 +0,0 @@
|
||||||
{% extends "base.html" %}
|
|
||||||
{% block content %}
|
|
||||||
<ul>
|
|
||||||
<!-- TO IMPLEMENT -->
|
|
||||||
{% for person in persons.all %}
|
|
||||||
<li>{{ person }}</li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
{% endblock %}
|
|
|
@ -1,13 +0,0 @@
|
||||||
from django.urls import path
|
|
||||||
|
|
||||||
from ..views.person import *
|
|
||||||
|
|
||||||
app_name = 'person'
|
|
||||||
urlpatterns = [
|
|
||||||
path('', index, name='index'),
|
|
||||||
path('list', list_persons, name='list'),
|
|
||||||
path('form', form_person, name='form'),
|
|
||||||
path('add', add_person, name='add'),
|
|
||||||
|
|
||||||
]
|
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
from django.shortcuts import render
|
|
||||||
from django.http import HttpResponse
|
|
||||||
|
|
||||||
from pprint import pprint
|
|
||||||
|
|
||||||
from ..models import *
|
|
||||||
from ..forms import *
|
|
||||||
|
|
||||||
def index(request):
|
|
||||||
return HttpResponse("Hello Person")
|
|
||||||
|
|
||||||
def list_persons(request):
|
|
||||||
# TO IMPLEMENT
|
|
||||||
pass
|
|
||||||
|
|
||||||
def form_person(request):
|
|
||||||
# TO IMPLEMENT
|
|
||||||
pass
|
|
||||||
|
|
||||||
def add_person(request):
|
|
||||||
# TO IMPLEMENT
|
|
||||||
pass
|
|
Loading…
Reference in New Issue