23 lines
516 B
HTML
23 lines
516 B
HTML
{% extends 'main_base.html' %}
|
|
|
|
{% block title %}
|
|
Home
|
|
{% endblock %}
|
|
|
|
{% block extra_head %}
|
|
<link rel="stylesheet" href="/static/css/files/faq.css" />
|
|
{% endblock %}
|
|
|
|
{% block pageTitle %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="faqBlock">
|
|
FAQs <br />
|
|
<p> Q. Does one need to login in order to use the printing tools? <br />
|
|
A. Yes, this is required to establish which documents you have permissions to modify or edit. To do this anonymously, use "guest" </p>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|