Open youthhng opened 7 years ago
您好:
以下是我在書裡看到一些有疑惑的地方
p.273 的 users_list.html 的路徑, 書上 title 的路徑是 mysite/restaurants/users_list.html 但我想它應該是 mysite/restaurants/templates/users_list.html ...?
templates/
另外是 p.275 的 mysite/restaurants/views.py 在使用 def list 取代 def list_restaurants(和 def list_users) 之後, mysite/templates/restaurants_list.html 裡的 {% for r in restaurants %} 應該要跟著改成 {% for r in objs %}, 才能讓 restaurants_list.html 能夠顯示出所有的餐廳
def list
def list_restaurants
def list_users
{% for r in restaurants %}
{% for r in objs %}
感謝~
您好:
以下是我在書裡看到一些有疑惑的地方
p.273 的 users_list.html 的路徑, 書上 title 的路徑是 mysite/restaurants/users_list.html 但我想它應該是 mysite/restaurants/
templates/
users_list.html ...?另外是 p.275 的 mysite/restaurants/views.py 在使用
def list
取代def list_restaurants
(和def list_users
) 之後, mysite/templates/restaurants_list.html 裡的{% for r in restaurants %}
應該要跟著改成{% for r in objs %}
, 才能讓 restaurants_list.html 能夠顯示出所有的餐廳感謝~