-
-
Save vitorfs/17e583f4f0068850c5929bd307dd436a to your computer and use it in GitHub Desktop.
This file contains 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' %} | |
{% 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 %} | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment