【Django】ラジオボタンを作成する
複数の項目から1つを選ぶラジオボタンを作成します。hello/views.pyfrom django.shortcuts import renderfrom django.http import HttpResponsefrom django.views.gen
複数の項目から1つを選ぶラジオボタンを作成します。hello/views.pyfrom django.shortcuts import renderfrom django.http import HttpResponsefrom django.views.gen
任意の値を設定してプルダウンメニューを作成する方法です。hello/views.pyfrom django.shortcuts import renderfrom django.http import HttpResponsefrom django.views.
「unknown」「YES」「NO」から選択するフィードです。hello/views.pyfrom django.shortcuts import renderfrom django.http import HttpResponsefrom django.vie
まず、index.htmlにフォームを用意します。hello/templates/index.html<body class="container"> <h1 class="display-4 text-p
外部からロードして使うファイルは「静的ファイル」と呼ばれます。例えば、cssファイルやjavascriptファイルなど様々です。静的ファイルは「static」フォルダを使い設定します。「hello」→「static」→「hello」→「css」hello/static/he
テンプレートによる表示は複数のページを用意して、行き来することもできます。hello/templates/hello/index.html<!doctype html><html lang="ja"><h
views.pyのindexからテンプレートのindex.htmlに値を渡す方法です。hello/views.py → hello/templates/hello/index.htmlhello/templates/hello/index.html
webページの内容をテキストとして用意するやり方は、あまりいいとは思えません。そこで表示ページのデータを「テンプレート」として用意し、テンプレートを読み込んで画面に表示させることができます。テンプレートは「django_app」→「hello」アプリケーション→「templates」→「h
urlpatternsを修正する。hello/urls.pyfrom django.urls import pathfrom . import viewsurlpatterns = [ path('<int:id>/<ni
hello/view.pyfrom django.shortcuts import renderfrom django.http import HttpResponsedef index(request): msg = request.GET['m