{% extends 'comment.html' %}
{% block subComment %}
<ul class="list-group" style="">
<h1>所有問題</h1>
{% for foo in questions %}
<li class="list-group-item" style="width: 800px">
<a class="wrap-img" href="#" target="_blank">
<img src="http://www.bookmarkye.com/3.jpg" width="50px">
</a>
<span class="glyphicon glyphicon-left" aria-hidden="true"></span>
<a href="{{ url_for('comment',user_id=foo.author.id ,num='1')}}"
target="_blank">{{ foo.author.username }}</a>
<br>
<a href="{{ url_for('detail',question_id=foo.id) }}">{{ foo.title }}</a>
<span class="badge">{{ foo.creat_time }}</span>
<p style="">{{ foo.detail }}
</p>
</li>
{% endfor %}
</ul>
{% endblock %}
<ul class="list-group" style="margin-top: 30px;">
<h1>所有評論</h1>
{% for com in comment %}
<li class="list-group-item" style="width: 800px">
<a class="wrap-img" href="#" target="_blank">
<img src="http://www.bookmarkye.com/3.jpg" width="50px">
</a>
<span class="glyphicon glyphicon-left" aria-hidden="true"></span>
<a href="{{ url_for('comment',user_id=com.author.id,num='1') }}"
target="_blank">{{ com.author.username }}</a>
<br>
<span class="badge">{{ com.creat_time }}</span>
<p style="">{{ com.detail }}</p>
</li>
{% endfor %}
</ul>
<div class="list-group-item" style="margin-top: 30px;width: 800px;"> <h1>名稱: <small>{{ user2.username }}</small> </h1> <h1>問題數: <small>{{ questions|length }}</small> </h1> <h1>評論數: <small>{{ comment|length }}</small> </h1></div>