its-django / mysite

<<It's Django - 用Python迅速打造Web應用>> 書中程式碼
Apache License 2.0
48 stars 25 forks source link

p.273 的 users_list.html 和 p.275 的 mysite/restaurants/views.py #25

Open youthhng opened 7 years ago

youthhng commented 7 years ago

您好:

以下是我在書裡看到一些有疑惑的地方

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 能夠顯示出所有的餐廳

感謝~