Commit 216e56b2 by Kálmán Viktor

dashboard: better message if no search result

parent 13fa59a0
......@@ -68,7 +68,15 @@
{% endif %}
</tr>
{% empty %}
<tr><td colspan="5"><strong>{% trans "You have no virtual machines." %}</strong></td></tr>
<tr>
<td colspan="5">
{% if request.GET.s %}
<strong>{% trans "No result." %}</strong>
{% else %}
<strong>{% trans "You have no virtual machines." %}</strong>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment