Skip to content

Instantly share code, notes, and snippets.

@zopyx
Created November 28, 2017 11:12
Show Gist options
  • Save zopyx/5a7e837ddfeab35ff8180627ff5fba63 to your computer and use it in GitHub Desktop.
Save zopyx/5a7e837ddfeab35ff8180627ff5fba63 to your computer and use it in GitHub Desktop.
<table id="all-versions">
<thead>
<tr>
<th class="version" i18n:translate="">Version</th>
<th class="date" i18n:translate="">Date</th>
<th class="files" i18n:translate="">Files</th>
</tr>
</thead>
<tbody>
<tr tal:repeat="d python: reversed(view.all_versions())">
<td class="version" tal:content="d/version"/>
<td class="date">
<span tal:attributes="data-time d/published|nothing" tal:content="d/published | nothing"></span>
</td>
<td>
<div class="vue">
<files tal:attributes="v-bind:version d/version">
</files>
</div>
</td>
</tr>
<tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment