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 / tweens.dbtmako
Size: Mime:
<h4>${definition} definition</h4>
<table class="table table-striped">
	<thead>
		<tr>
			<th>Order (from server to application)</th>
			<th>Tween</th>
		</tr>
	</thead>
	<tbody>
		% for i, (name, tween) in enumerate(tweens):
			<tr>
				<td>${str(i)}</td>
				<td>${name}</td>
			</tr>
		% endfor
	</tbody>
</table>