panel.html 800 B

1234567891011121314151617181920
  1. {% if g.user.is_authenticated %}
  2. <ul class="list-group">
  3. {% if topic.is_followed() %}
  4. <button type="button" class="btn btn-info btn-block topic-following active" data-id="{{topic.id}}">取消关注</button>
  5. {% else %}
  6. <button type="button" class="btn btn-info btn-block topic-following" data-id="{{topic.id}}">关注问题</button>
  7. {% endif %}
  8. {% if g.user == topic.author %}
  9. <a class="btn btn-success btn-block" href="{{ url_for('topic.edit',topicId=topic.id)}}">
  10. 编辑问题
  11. </a>
  12. {%- endif %}
  13. {% if topic.is_collected() %}
  14. <span class="btn btn-default btn-block">已收藏</span>
  15. {% else %}
  16. <span class="btn btn-default btn-block" data-toggle="modal" data-target="#sidecollect">收藏问题</span>
  17. {% include "topic/collect.html" %}
  18. {% endif %}
  19. </ul>
  20. {% endif %}