Skip to content

Instantly share code, notes, and snippets.

@vitorfs
Created September 30, 2017 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vitorfs/17e583f4f0068850c5929bd307dd436a to your computer and use it in GitHub Desktop.
Save vitorfs/17e583f4f0068850c5929bd307dd436a to your computer and use it in GitHub Desktop.
{% 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