就是访问别人的页面时,能看到TA的记事本。
我在member_home.html页面中加入了下面的代码:
<div class="sep20"></div>
<div class="box">
<div class="cell"><span class="boxTit">{{ one.username }}的日记</span></div>
{% for note in notes %}
<div class="cell">
<span class="bigger"><a href="/notes/{{ note.num }}" class="black">{{ note.title|escape }}</a></span>
<div class="sep10"></div>
<span class="fade">创建于 {{ note.created|timesince }} 前</span>
</div>
{% endfor %}
</div>
没有作用啊~~
我在member_home.html页面中加入了下面的代码:
<div class="sep20"></div>
<div class="box">
<div class="cell"><span class="boxTit">{{ one.username }}的日记</span></div>
{% for note in notes %}
<div class="cell">
<span class="bigger"><a href="/notes/{{ note.num }}" class="black">{{ note.title|escape }}</a></span>
<div class="sep10"></div>
<span class="fade">创建于 {{ note.created|timesince }} 前</span>
</div>
{% endfor %}
</div>
没有作用啊~~