its-django / mysite

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

p.239 <td><a href="/comment/{{r.id}}/">評價</a></td> 似乎重複了 #23

Open youthhng opened 7 years ago

youthhng commented 7 years ago

您好:

p.239的這個部分似乎重複了:

                ......
                 <td><a href="/comment/{{ r.id }}/">評價</a></td>
                 {% if perms.restaurants.can_comment %}
                     <td><a href="/comment/{{ r.id }}/">comment</a></td>
                 {% endif %}
                ......

我將內容改成

                ......
                 {% if perms.restaurants.can_comment %}
                    <td><a href="/comment/{{ r.id }}/">評價</a></td>
                 {% endif %}
                ......

之後,權限不足的使用者才無法正常看到評價