sort.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {% import 'base/link.html' as link %}
  2. <div class="panel-body" style="padding-top:0;">
  3. {% if questions %}
  4. {% for question in questions %}
  5. <div class="row" style="padding:5px 0;border-bottom:1px solid #f6e1e1;">
  6. <div class="col-md-9">
  7. {{ link.question(question) }}
  8. <br/>
  9. {% for tag in question.tags %}
  10. <span class="label label-default" style="font-size:12px;background:rgba(1,126,102,.08);color:#337ab7">{{ link.tag(tag.name) }}</span>
  11. {% endfor %}
  12. </div>
  13. <div class="col-md-1">
  14. <span style="font-size:12px"> {{ link.user(question.author.name) }}</span>
  15. <span style="font-size:12px;color:#999;">
  16. {{ question.time.strftime('%Y-%m-%d') }}
  17. </span>
  18. </div>
  19. <div class="col-md-1 hidden-xs">
  20. <span>1</span>
  21. <br>
  22. <span style="font-size:12px;color:#999;">
  23. 1
  24. </span>
  25. </div>
  26. <div class="col-md-1 hidden-xs">
  27. <span style="font-size:12px">{{ link.user(question.last_author) }}</a></span>
  28. <span style="font-size:12px;color:#999;">
  29. {{ question.last_time.strftime('%Y-%m-%d') }}
  30. </span>
  31. </div>
  32. </div>
  33. {% endfor %}
  34. {% endif %}
  35. </div>