{% extends "base.html" %} {% block title %}{{ database }}: {{ table }}{% endblock %} {% block content %}
| {% if use_rowid %}rowid{% else %}Link{% endif %} | {% for column in display_columns %}{{ column }} | {% endfor %}
|---|---|
| {{ row_link(row) }} | {% for td in row %} {% if not use_rowid or (use_rowid and not loop.first) %}{{ td }} | {% endif %} {% endfor %}