From bc3634ca98ea0a5e3ebb5c5f41684a485c30b119 Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Sat, 16 Oct 2010 23:53:07 +0000 Subject: Rename HTML print templates. --- Resources/Templates/SPPrintTemplate.html | 124 +++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 Resources/Templates/SPPrintTemplate.html (limited to 'Resources/Templates/SPPrintTemplate.html') diff --git a/Resources/Templates/SPPrintTemplate.html b/Resources/Templates/SPPrintTemplate.html new file mode 100644 index 00000000..68f7affb --- /dev/null +++ b/Resources/Templates/SPPrintTemplate.html @@ -0,0 +1,124 @@ + + + + Sequel Pro + + + + + + + +

{{c.table}}

+ +

+ Connection: {{c.username}}{% if c.username %}@{% /if %}{{c.hostname}}{% if c.port %}:{% /if %}{{c.port}}/{{c.database}}
+ Generated on: {% now | date_format: "dd MMM yyyy 'at' HH:mm:ss" %} by {{c.version}}
+ {% if c.query %}
SQL query: {{c.query}}{% /if %} +
+

+ +

{{heading}}

+ + + + + {% for column in columns %}{% /for %} + + + + + {% for row in rows %} + + {% for cell in row %}{% /for %} + + {% /for %} + +
{{ column }}
{{ cell }}

+ + {% if hasIndexes && indexes %} +

Table Indexes

+ + + + + {% for indexColumn in indexColumns %}{% /for %} + + + + + {% for index in indexes %} + + {% for cell in index %}{% /for %} + + {% /for %} + +
{{ indexColumn }}
{{ cell }}
+ {% /if %} + + -- cgit v1.2.3