23 lines
751 B
HTML
23 lines
751 B
HTML
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% extends "base.html" %}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% block title %}{{ title }} {{ person.plain_name }}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
{{ title }}
|
|
<br>
|
|
<small class="text-muted">{{ person.plain_name }}</small>
|
|
</h1>
|
|
<p class="my-3 alert alert-info">
|
|
{{ info|striptags }}
|
|
</p>
|
|
<form enctype="multipart/form-data" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{% bootstrap_button button_type="submit" content="Submit" %}
|
|
<a class="btn btn-secondary float-end"
|
|
href="{% url "ietf.ietfauth.views.profile" %}">Back</a>
|
|
</form>
|
|
{% endblock %} |