<form action="/hello/" method="post">
{% csrf_token %}
<input id="name" type="text" name="name" value="{{current_name}}">
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
{% load static %} <html lang="ja"> <head> <meta charset="utf-8"> <title>hello/index</title> <link rel="stylesheet" type="text/css" href="{% static 'hello/style.css' %}" /> </head> <body> <h1>hello/index</h1> <p>{{msg}}</p> <form action="/hello/" method="post"> {% csrf_token %} <label for="name">name: </label> <input id="name" type="text" name="name" value="{{current_name}}"> <input type="submit" value="OK"> </form> </body> </html>
<< 前へ | 次へ >> |