mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-25 15:45:23 +00:00
add missing instance title for grouped instances list
This commit is contained in:
parent
3b74571580
commit
bd44b03bb0
2 changed files with 6 additions and 3 deletions
|
@ -41,7 +41,9 @@
|
||||||
<tr host="{{ compute.id }}">
|
<tr host="{{ compute.id }}">
|
||||||
<td class="text-right">{{ forloop.counter }} </td>
|
<td class="text-right">{{ forloop.counter }} </td>
|
||||||
<td>
|
<td>
|
||||||
<a class="text-secondary" href="{% url 'instances:instance' instance.id %}">{{ instance.name }}</a><br>
|
<a class="text-secondary" href="{% url 'instances:instance' instance.id %}">{{ instance.name }}</a>
|
||||||
|
<br>
|
||||||
|
<p class="m-0 small font-italic">{{ instance.title }}</p>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<em>
|
<em>
|
||||||
|
|
|
@ -19,8 +19,9 @@
|
||||||
<td>
|
<td>
|
||||||
<a class="text-secondary" href="{% url 'instances:instance' instance.id %}">
|
<a class="text-secondary" href="{% url 'instances:instance' instance.id %}">
|
||||||
{{ instance.name }}
|
{{ instance.name }}
|
||||||
</a><br>
|
</a>
|
||||||
<small><em>{{ instance.title }}</em></small>
|
<br>
|
||||||
|
<p class="m-0 small font-italic">{{ instance.title }}</p>
|
||||||
</td>
|
</td>
|
||||||
{% if request.user.is_superuser %}
|
{% if request.user.is_superuser %}
|
||||||
<td>
|
<td>
|
||||||
|
|
Loading…
Reference in a new issue