mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 19:37:06 +00:00
36 lines
1011 B
HTML
36 lines
1011 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'people:person.list' %}">People</a>
|
|
</li>
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'people:person.detail' pk=person.pk %}">{{ person }}</a>
|
|
</li>
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'people:relationship.detail' pk=relationship.pk %}">{{ relationship.target }}</a>
|
|
</li>
|
|
<li class="breadcrumb-item active" aria-current="page">Update Relationship</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<h1>Update Relationship</h1>
|
|
|
|
<hr>
|
|
|
|
<form class="form"
|
|
method="POST">
|
|
{% csrf_token %}
|
|
|
|
{% load bootstrap4 %}
|
|
{% bootstrap_form form %}
|
|
|
|
{% buttons %}
|
|
<button class="btn btn-success" type="submit">Submit</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|