aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/templates/caf/applicablesystem_detail.html
blob: 725435e2b80831a91811312f3ce1676a53f6d9b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base.html" %}

{% load static %}

{% block title %}{{ object.name }}{% endblock %}
{% block content %}

  <div class="container">
    <div class="row">
      <div class="col-sm-12">
        <h3>{{ object.name }}</h3>
        <h5>Description</h5>
        <p>{{ object.description }}</p>
        <p>Contained within CAF: to <a href="{% url "caf:detail" object.caf.pk %}">{{ object.caf }}</a></p>
      </div>
    </div>
  </div>

{% endblock %}