diff options
| author | Jannis Leidel | 2012-03-31 18:44:05 +0200 | 
|---|---|---|
| committer | Jannis Leidel | 2012-03-31 18:44:05 +0200 | 
| commit | 6e9142da8f56689899779ebe6248b40c0b3409cf (patch) | |
| tree | af1eb1843c653c779d5f7f1344f10cbd06adb78b /debug_toolbar/templates | |
| parent | 2c7f68d55a6a0c101c41bd23ccb2d0ce9b332e42 (diff) | |
| download | django-debug-toolbar-6e9142da8f56689899779ebe6248b40c0b3409cf.tar.bz2 | |
Fixed merge bugs in the cache panel code.
Diffstat (limited to 'debug_toolbar/templates')
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/cache.html | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/cache.html b/debug_toolbar/templates/debug_toolbar/panels/cache.html index 8576d3c..8104d99 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/cache.html +++ b/debug_toolbar/templates/debug_toolbar/panels/cache.html @@ -38,8 +38,9 @@  		<tr>  			<th>{% trans "Time" %} (ms)</th>  			<th>{% trans "Type" %}</th> -			<th>{% trans "Parameters" %}</th>  			<th>{% trans "Function" %}</th> +			<th>{% trans "args" %}</th> +			<th>{% trans "kwargs" %}</th>  		</tr>  	</thead>  	<tbody> @@ -47,8 +48,9 @@  			<tr class="{% cycle 'row1' 'row2' %}">  				<td>{{ call_time|floatformat:"4" }}</td>  				<td>{{ call_type|escape }}</td> -				<td>{{ call_args|escape }}, {{ call_kwargs|escape }}</td>  				<td><acronym title="{{ call_func.0 }}:{{ call_func.1 }}">{{ call_func.2|escape }}</acronym>: {{ call_func.3.0|escape }}</td> +				<td>{{ call_args|escape }}</td> +				<td>{{ call_kwargs|escape }}</td>  			</tr>  		{% endfor %}  	</tbody>  | 
