| 1 |
{% extends "base.html" %} |
| 2 |
|
| 3 |
{% block title %}Edit Title — {{ current_title }} — Multithreaded{% endblock %} |
| 4 |
|
| 5 |
{% block head %}<meta name="robots" content="noindex">{% endblock %} |
| 6 |
|
| 7 |
{% block header %}{% include "partials/site_header.html" %}{% endblock %} |
| 8 |
|
| 9 |
{% block content %} |
| 10 |
<div class="container"> |
| 11 |
<div class="breadcrumb"> |
| 12 |
<a href="/">Forums</a> |
| 13 |
<span class="sep">/</span> |
| 14 |
<a href="/p/{{ community_slug }}">{{ community_name }}</a> |
| 15 |
<span class="sep">/</span> |
| 16 |
<a href="/p/{{ community_slug }}/{{ category_slug }}">{{ category_name }}</a> |
| 17 |
<span class="sep">/</span> |
| 18 |
<a href="/p/{{ community_slug }}/{{ category_slug }}/{{ thread_id }}">{{ current_title }}</a> |
| 19 |
<span class="sep">/</span> |
| 20 |
Edit Title |
| 21 |
</div> |
| 22 |
<h2 class="section-heading">Edit Thread Title</h2> |
| 23 |
<div class="form-container"> |
| 24 |
<form method="post" action="/p/{{ community_slug }}/{{ category_slug }}/{{ thread_id }}/edit"> |
| 25 |
<div class="form-group"> |
| 26 |
<label for="title">Title</label> |
| 27 |
<input type="text" id="title" name="title" value="{{ current_title }}" required maxlength="256"> |
| 28 |
</div> |
| 29 |
<div class="form-actions"> |
| 30 |
<button type="submit" class="primary">Save</button> |
| 31 |
<a href="/p/{{ community_slug }}/{{ category_slug }}/{{ thread_id }}" class="btn-secondary">Cancel</a> |
| 32 |
</div> |
| 33 |
</form> |
| 34 |
</div> |
| 35 |
</div> |
| 36 |
{% endblock %} |
| 37 |
|