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

View raw Download
text/plain • 316 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
{% for post in Post.query.filter_by(repo=repoData) %}
9
{% endfor %}
10
</x-frame>
11
</x-vbox>
12
{% endblock %}