Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pyramid-debugtoolbar / panels / templates / versions.dbtmako
Size: Mime:
<h4>Platform</h4>
<div>${platform}</div>

<h4>Packages</h4>

<table class="table table-striped table-condensed">
	<thead>
		<tr>
			<th>Package Name</th>
			<th>Version</th>
		</tr>
	</thead>
	<tbody>
		% for i, package in enumerate(packages):
			<tr>
				<td>${package['name']|h}</td>
				<td>${package['version']|h}</td>
			</tr>
		% endfor
	</tbody>
</table>