Skip to content

Commit 26cab28

Browse files
authored
Merge pull request #296 from grycap/devel
Devel
2 parents 7a987bf + e750598 commit 26cab28

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

app/templates/infrastructures.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ <h4 class="font-weight-bold text-primary">My Infrastructures</h4>
122122
<thead>
123123
<tr>
124124
<th style="width: 10%" scope="col">Name</th>
125-
<th style="width: 25%" scope="col">Infrastructure uuid</th>
126-
<th style="width: 5%" scope="col">Cloud Type</th>
127-
<th style="width: 20%" scope="col">Cloud Info</th>
125+
<th style="width: 25%; white-space: nowrap;" scope="col">Infrastructure uuid</th>
126+
<th style="width: 5%; white-space: nowrap;" scope="col">Cloud Type</th>
127+
<th style="width: 20%; white-space: nowrap;" scope="col">Cloud Info</th>
128128
<th style="width: 10%" scope="col">Status</th>
129129
<th style="width: 17%" scope="col">VMs</th>
130130
<th style="width: 13%" scope="col">Actions</th>
@@ -135,18 +135,18 @@ <h4 class="font-weight-bold text-primary">My Infrastructures</h4>
135135
<tbody>
136136
{% for infId, infInfo in infrastructures.items() %}
137137
<tr>
138-
<td scope="row">
138+
<th scope="row">
139139
<a id="desc_{{infId}}_a" href="#" onclick="$('#edit_dest_{{infId}}').modal('show');">
140140
{% if infInfo["name"] != "" %}
141141
{{infInfo["name"]}}
142142
{% else %}
143143
N/A
144144
{% endif %}
145145
</a>
146-
</td>
147-
<td>
146+
</th>
147+
<th>
148148
{{infId}}
149-
</td>
149+
</th>
150150
<td>
151151
{% if "cloud_type" in infInfo and infInfo["cloud_type"] %}
152152
<img height="35" src="{{ url_for('static', filename='images/' + infInfo['cloud_type'] + 'Row.png') }}"/>

0 commit comments

Comments
 (0)