/topic_posts.html Secret
Created
October 8, 2017 15:47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends 'base.html' %} | |
{% load static %} | |
{% block title %}{{ topic.subject }}{% endblock %} | |
{% block breadcrumb %} | |
<li class="breadcrumb-item"><a href="{% url 'home' %}">Boards</a></li> | |
<li class="breadcrumb-item"><a href="{% url 'board_topics' topic.board.pk %}">{{ topic.board.name }}</a></li> | |
<li class="breadcrumb-item active">{{ topic.subject }}</li> | |
{% endblock %} | |
{% block content %} | |
<div class="mb-4"> | |
<a href="{% url 'reply_topic' topic.board.pk topic.pk %}" class="btn btn-primary" role="button">Reply</a> | |
</div> | |
{% for post in posts %} | |
<div class="card {% if forloop.last %}mb-4{% else %}mb-2{% endif %} {% if forloop.first %}border-dark{% endif %}"> | |
{% if forloop.first %} | |
<div class="card-header text-white bg-dark py-2 px-3">{{ topic.subject }}</div> | |
{% endif %} | |
<div class="card-body p-3"> | |
<div class="row"> | |
<div class="col-2"> | |
<img src="{% static 'img/avatar.svg' %}" alt="{{ post.created_by.username }}" class="w-100"> | |
<small>Posts: {{ post.created_by.posts.count }}</small> | |
</div> | |
<div class="col-10"> | |
<div class="row mb-3"> | |
<div class="col-6"> | |
<strong class="text-muted">{{ post.created_by.username }}</strong> | |
</div> | |
<div class="col-6 text-right"> | |
<small class="text-muted">{{ post.created_at }}</small> | |
</div> | |
</div> | |
{{ post.message }} | |
{% if post.created_by == user %} | |
<div class="mt-3"> | |
<a href="{% url 'edit_post' post.topic.board.pk post.topic.pk post.pk %}" | |
class="btn btn-primary btn-sm" | |
role="button">Edit</a> | |
</div> | |
{% endif %} | |
</div> | |
</div> | |
</div> | |
</div> | |
{% endfor %} | |
{% include 'includes/pagination.html' %} | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment