enhance script, rm .tmp
This commit is contained in:
parent
3e00ac64f5
commit
61d3873476
|
@ -4,6 +4,7 @@ BASE='route_template'
|
||||||
NAME=$1
|
NAME=$1
|
||||||
NAME_UPPERFIRST=$(echo "$NAME"|sed 's/^./\U&/')
|
NAME_UPPERFIRST=$(echo "$NAME"|sed 's/^./\U&/')
|
||||||
|
|
||||||
|
echo "COMMIT BEFORE"
|
||||||
PROJ='gpp'
|
PROJ='gpp'
|
||||||
APP='port'
|
APP='port'
|
||||||
|
|
||||||
|
@ -50,4 +51,7 @@ mv ./templates/new ./templates/$NAME
|
||||||
|
|
||||||
sed -i "$SEDCMD" ./urls/$NAME.py
|
sed -i "$SEDCMD" ./urls/$NAME.py
|
||||||
|
|
||||||
|
cd $PWD_
|
||||||
|
rsync -av "./$BASE.tmp/" .
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
|
@ -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,32 +0,0 @@
|
||||||
{% extends "base.html" %}
|
|
||||||
{% block content %}
|
|
||||||
<form action="{% url 'person:add' %}" method="post">
|
|
||||||
{% csrf_token %}
|
|
||||||
<!--
|
|
||||||
<label for="name">Name : </label>
|
|
||||||
<input type="text" name="name" id="name"/>
|
|
||||||
<br />
|
|
||||||
<label for="surname">Surname : </label>
|
|
||||||
<input type="text" name="surname" id="surname"/>
|
|
||||||
<br />
|
|
||||||
<label for="nationality">Nationality : </label>
|
|
||||||
<input type="text" name="nationality" id="nationality"/>
|
|
||||||
<br />
|
|
||||||
<label for="nationality">Nationality : </label>
|
|
||||||
<label for="email">e-mail : </label>
|
|
||||||
<input type="text" name="email" id="email"/>
|
|
||||||
<label for="phone">Phone number : </label>
|
|
||||||
<input type="countrycode" value="+33"/>
|
|
||||||
<input type="text" name="phone" id="phone"/>
|
|
||||||
-->
|
|
||||||
<fieldset>
|
|
||||||
<legend>Person</legend>
|
|
||||||
{{ form.person }}
|
|
||||||
</fieldset>
|
|
||||||
<fieldset>
|
|
||||||
<legend>Address</legend>
|
|
||||||
{{ form.address }}
|
|
||||||
</fieldset>
|
|
||||||
<input type="submit" value="add"/>
|
|
||||||
</form>
|
|
||||||
{% endblock %}
|
|
|
@ -1,8 +0,0 @@
|
||||||
{% extends "base.html" %}
|
|
||||||
{% block content %}
|
|
||||||
<ul>
|
|
||||||
{% 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