~rvb/maas/transaction-1.7-bug-1409852

« back to all changes in this revision

Viewing changes to src/maasserver/templates/maasserver/node_view.html

merged upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
215
215
      {% if nodeinstallresults != None %}
216
216
        <li class="block first size5 separate" id="nodeinstallresults">
217
217
          <h4>Installation output</h4>
218
 
        <ul>
219
 
        {% for install_result in nodeinstallresults %}
220
 
          <li>
221
 
              <span>
222
 
                <a href="{% url 'nodeinstallresult-view' install_result.id %}">
223
 
                {{ install_result.name }}
224
 
                </a>
225
 
              </span>
226
 
          </li>
227
 
        {% endfor %}
228
 
        </ul>
 
218
          {% for install_result in nodeinstallresults %}
 
219
          <span>
 
220
            <a href="{% url 'nodeinstallresult-view' install_result.id %}">
 
221
              {{ install_result.name }}
 
222
            </a>
 
223
          </span>
 
224
          {% endfor %}
229
225
        </li>
230
226
      {% endif %}
231
227
      {% if nodecommissionresults > 0 %}