Files
linguist/samples/HTML+Django/_worker.jinja2
Steve Pike dd3b1eec91 enable syntax highlighting for .jinja2 ext (#4051)
* enable syntax highlighting for .jinja2 ext

This is a commonly used jinja (2!) extension

* add sample jinja2 file

* move jinja to django samples dir

* added a link to the jinja docs in the sample file

* change sample jinja2 file to a one that exists on GH
2018-03-06 13:53:24 +00:00

39 lines
947 B
Django/Jinja

<h1>Workers</h1>
<table class="workers">
<tr>
<th>Job server</th>
<th>IP</th>
<th>File descriptor</th>
<th>Client ID</th>
<th>Functions</th>
</tr>
{% for server_info in server_infos %}
<tr {% if server_info['failed'] %} class="failure" {% endif %} >
<th>{{ server_info['hostport'][0] }}:{{ server_info['hostport'][1] }}</th>
<th>
{%- if server_info['failed'] -%} Not responding! {%- endif -%}
</th>
<th></th>
<th></th>
<th></th>
</tr>
{% if not server_info['failed'] %}
{% for worker in server_info['workers'] %}
<tr>
<td class="server"></td>
<td class="ip">{{ worker['ip'] }}</td>
<td class="file_descriptor">{{ worker['file_descriptor'] }}</td>
<td class="client_id">{{ worker['client_id'] }}</td>
<td class="functions">
{{ worker['tasks']|join(', ') }}
</td>
</tr>
{% endfor %}
{% endif %}
{% endfor %}
</table>