vm-credentials.html 725 Bytes
Newer Older
tarokkk committed
1 2
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
Dányi Bence committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<div class="content">
    <table>
        <tr>
            <th>{% trans "Protocol" %}:</th>
            <td>{{i.template.access_type|upper}}</td>
        </tr>
        <tr>
            <th>{% trans "IP" %}:</th>
            <td>{{ i.firewall_host.pub_ipv4 }}</td>
        </tr>
        <tr>
            <th>{% trans "Port" %}:</th>
            <td>{{ i.get_port}}</td>
        </tr>
        <tr>
            <th>{% trans "Username" %}:</th>
            <td>cloud</td>
        </tr>
        <tr>
            <th>{% trans "Password" %}:</th>
23
            <td><input type="text" class="hidden-password" data-value="{{ i.pw }}" /></td>
Dányi Bence committed
24 25 26
        </tr>
    </table>
</div>