diff options
Diffstat (limited to 'mustache-templates/reproducible/package_history.mustache')
-rw-r--r-- | mustache-templates/reproducible/package_history.mustache | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mustache-templates/reproducible/package_history.mustache b/mustache-templates/reproducible/package_history.mustache new file mode 100644 index 00000000..8326e8dc --- /dev/null +++ b/mustache-templates/reproducible/package_history.mustache @@ -0,0 +1,17 @@ +{{^rows}} +<p>No historical data available for this package{{#arch}} on architecture: {{arch}}{{/arch}}.</p> +{{/rows}} +<table> + <tr> + {{#keys}} + <th>{{key}}</th> + {{/keys}} + </tr> + {{#rows}} + <tr> + {{#row_items}} + <td>{{{item}}}</td> + {{/row_items}} + </tr> + {{/rows}} +</table> |