You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
742 B
HTML
33 lines
742 B
HTML
{% extends "public/templates/public_template.html" %}
|
|
|
|
{% block title %}TERMS AND CONDITIONS{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="spaceleft">
|
|
|
|
<h3>TERMS AND CONDITIONS</h3>
|
|
|
|
<div>
|
|
<h4>The Project</h4>
|
|
<p>Here you will read the TOS</p>
|
|
</div>
|
|
|
|
|
|
<div class="requestabook">
|
|
<h2>LEAVE A COMMENT</h2>
|
|
|
|
<div class="scrollrequests">
|
|
|
|
<p class="compressed"><a class="linktorequest" href="/write_comment">Leave a comment</a>
|
|
<div class="scrollrequests">
|
|
{% for comment in comments %}
|
|
<div class="booksrequested">
|
|
<h4>{{ comment['name'] }}</h4>
|
|
<p class="info">{{ comment['commenting'] }}</p>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|