| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

差分

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

案内メニュー