==Django 簡単スタート==
[[Django][Python]]
*{ } は特定の値に置き換える
===プロジェクト===
*urls.py
# Uncomment the next two lines to enable the admin:
from django.contrib import admin # <<- コメントはずす admin.autodiscover() # <<- コメントはずす
=====モデルを追加=====
=====テンプレート {page_na,e}.html=====
{% if items %}
<<ul>>
{% for item in items %}
<<li>>{{ items.name }}<</li>>
{% endfor %}
<</ul>>
{% else %}
<<p>>No polls are available.<</p>>
{% endif %}