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/plain • 464 B
ASCII text
        
            
1
{% extends "repo.html" %}
2
{% block title %}
3
Forum of {{ username }}/{{ repository }}
4
{% endblock %}
5
{% block content %}
6
<x-vbox>
7
<x-frame style="--width: 896px;" class="flexible-space">
8
<x-vbox>
9
{% set parent = Post.query.filter_by(repo=repoData, number=postID).first() %}
10
{% set post = parent %}
11
{% set level = 0 %}
12
{% include "post.html" %}
13
</x-vbox>
14
</x-frame>
15
</x-vbox>
16
{% endblock %}