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-thread.html

View raw Download
text/html • 544 B
HTML document, ASCII text
        
            
1
{% extends "repo.html" %}
2
{% set active_page = "forum" %}
3
4
{% set parent = Post.query.filter_by(repo=repo_data, number=post_id).first() %}
5
{% block title %}
6
{{ parent.subject }} in {{ username }}/{{ repository }}
7
{% endblock %}
8
{% block content %}
9
<script src="/static/voting.js"></script>
10
<x-vbox>
11
<x-frame style="--width: 896px;" class="flexible-space">
12
<x-vbox>
13
{% set post = parent %}
14
{% set level = 0 %}
15
{% include "post.html" %}
16
</x-vbox>
17
</x-frame>
18
</x-vbox>
19
{% endblock %}