标签:_for tar sub tail 点击 ict oca nta repeat
首页列表显示全部问答:
{% for a in question %} <ul class="note-list" > <li class="list-group-item"> {# <span class="glyphicon glyphicon-leaf" aria-hidden="true"></span>#} <a href="#">{{ a.author.username }}</a><br><br> <a href="#">{{ a.question }}</a> <span class="badge">{{ a.creat_time }}</span> <p style="text-indent: 18px">{{ a.questionDetail }}</p> </li> </ul> {% endfor %}
完成问答详情页布局:
def homepage(): context = { ‘question‘: Question.query.all() } return render_template("homepage.html",**context)
在首页点击问答标题,链接到相应详情页。
{{% extends ‘index.html‘ %} {% block title %}问答详情{% endblock %} {% block main %} <body style="url(../image/picture.jpg) no-repeat" > <div class="container"> <div class="box"> <h3 style="font-family:宋体;text-align: left;font-size: 40px">详情页</h3> </div> <h2>question</h2> <h2>username</h2> <span class="createtime">create_time</span> <p class="location">评论</p> <hr> <form action="{{ url_for(‘question‘) }}" method="post"> <div> <textarea class="form-control" id="new_comment" rows="6" placeholder="write your comment"style="height:200px;width:800px" ></textarea><br></div> <button type="submit" class="fabu"style="width:100px">发布</button> </form> <ul class="list-group" style="margin: 10px"></ul> </div> </body> {% endblock %}
标签:_for tar sub tail 点击 ict oca nta repeat
原文地址:http://www.cnblogs.com/JaTae/p/7989188.html