By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 repo-forum-edit.html

View raw Download
text/html • 1.13 kiB
HTML document, ASCII text
        
            
1
{% extends "repo.html" %}
2
{% set active_page = "forum" %}
3
4
{% block title %}
5
{% trans subject=post.subject, username=username, repository=repository %}Editing {{ subject }} in {{ username }}/{{ repository }}{% endtrans %}
6
{% endblock %}
7
{% block content %}
8
<x-vbox style="--gap-box: 0;">
9
<x-buttonbox id="forum-banner" class="box-center">
10
<a href="../{{ post.number }}" class="button icon-button">
11
<iconify-icon icon="mdi:arrow-left"></iconify-icon>
12
</a>
13
<h1>{% trans subject=post.subject %}Editing {{ subject }}{% endtrans %}</h1>
14
</x-buttonbox>
15
<x-frame style="--width: 896px;" class="flexible-space">
16
<form class="vbox" method="post">
17
<label>
18
Subject
19
<input type="text" name="subject" value="{{ post.subject }}">
20
</label>
21
<textarea name="message">{{ post.message }}</textarea>
22
<x-buttonbox class="box-center">
23
<button type="submit">
24
{% trans %}Submit{% endtrans %}
25
</button>
26
</x-buttonbox>
27
</form>
28
</x-frame>
29
</x-vbox>
30
{% endblock %}
31