10000 ふぁーすとこみっと · ej-git/django-tutorial-form1@0749f6f · GitHub
[go: up one dir, main page]

Skip to content

Commit 0749f6f

Browse files
ふぁーすとこみっと
0 parents  commit 0749f6f

29 files changed

+322
-0
lines changed

README.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
=========================================================================
2+
フォームの1番目の選択項目によって2番目の項目(MultipleChoiceField)を変える
3+
=========================================================================
4+
5+
Quick start
6+
-----------
7+
以下のようにcloneし、実行して確認してください::
8+
9+
git clone https://github.com/naritotakizawa/django-tutorial-form1.git
10+
python manage.py runserver

app/__init__.py

Whitespace-only changes.
144 Bytes
Binary file not shown.

app/__pycache__/admin.cpython-36.pyc

185 Bytes
Binary file not shown.

app/__pycache__/forms.cpython-36.pyc

1.04 KB
Binary file not shown.

app/__pycache__/models.cpython-36.pyc

182 Bytes
Binary file not shown.

app/__pycache__/urls.cpython-36.pyc

1.01 KB
Binary file not shown.

app/__pycache__/views.cpython-36.pyc

1.22 KB
Binary file not shown.

app/admin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.contrib import admin
2+
3+
# Register your models here.

app/apps.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.apps import AppConfig
2+
3+
4+
class AppConfig(AppConfig):
5+
name = 'app'

0 commit comments

Comments
 (0)
0