tetawebapp/tetawebapp/templates/database.html

13 lines
520 B
HTML
Raw Normal View History

2017-11-25 09:18:10 +01:00
{% extends "index.html" %}
2017-11-26 08:06:11 +01:00
{% block title %}Database{% endblock %}
2017-11-25 09:18:10 +01:00
{% block main %}
<article class='right'>
<h3>Accessing database</h3>
<p>
Even if using <a href='http://flask-sqlalchemy.pocoo.org/2.3/'>Flask-SQLAlchemy</a> to retrieve data
stored in <strong>Postgres</strong> databases is the recommended way to use <strong>TetaWebApp</strong>,
2017-11-25 09:42:46 +01:00
you're free to use the database connector that suits your need.
2017-11-25 09:18:10 +01:00
</p>
</article>
{% endblock %}