initial commit of book library in python with sqlalchemy (as an ORM), flask (for the web server) and jinja2 (as the web template front-end bit)
This commit is contained in:
9
templates/author.html
Normal file
9
templates/author.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<h1>authors</h1>
|
||||
{% for author in authors %}
|
||||
<p>{{author.surname}}, {{author.firstnames}}</p>
|
||||
{% endfor %}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user