mirror of
https://github.com/liriliri/eruda.git
synced 2026-03-20 09:38:37 +08:00
22 lines
628 B
Handlebars
22 lines
628 B
Handlebars
<div class="eruda-http">
|
|
<div class="eruda-breadcrumb">{{url}}</div>
|
|
{{#if data}}
|
|
<pre class="eruda-data">{{data}}</pre>
|
|
{{/if}}
|
|
<div class="eruda-section">
|
|
<h2>Response Headers</h2>
|
|
<table class="eruda-headers">
|
|
<tbody>
|
|
{{#each resHeaders}}
|
|
<tr>
|
|
<td class="eruda-key">{{@key}}</td>
|
|
<td>{{.}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{{#if hasResTxt}}
|
|
<pre class="eruda-response">{{resTxt}}</pre>
|
|
{{/if}}
|
|
</div> |