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