yahoo-eng-team team mailing list archive
-
yahoo-eng-team team
-
Mailing list archive
-
Message #25348
[Bug 1400317] [NEW] main block of some detail.html has no "row" and "col-sm-12" <div> elements
Public bug reported:
Main block of some detail.html has no "row" and "col-sm-12" <div>
elements and as a result some page has no left margin. Most detail page
has appropriate left margin.
This is pointed out in a comment of
https://review.openstack.org/#/c/129449/
For example, dashboards/project/networks/templates/networks/detail.html
{% block main %}
{% include "project/networks/_detail_overview.html" %}
<hr>
<div id="subnets">
{{ subnets_table.render }}
</div>
<div id="ports">
{{ ports_table.render }}
</div>
{% if dhcp_agent_support %}
<div id="agents">
{{ agents_table.render }}
</div>
{% endif %}
{% endblock %}
In most pages:
{% block main %}
<div class="row">
<div class="col-sm-12">
{% include "admin/volumes/snapshots/_detail_overview.html" %}
</div>
</div>
{% endblock %}
** Affects: horizon
Importance: Undecided
Assignee: Akihiro Motoki (amotoki)
Status: In Progress
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1400317
Title:
main block of some detail.html has no "row" and "col-sm-12" <div>
elements
Status in OpenStack Dashboard (Horizon):
In Progress
Bug description:
Main block of some detail.html has no "row" and "col-sm-12" <div>
elements and as a result some page has no left margin. Most detail
page has appropriate left margin.
This is pointed out in a comment of
https://review.openstack.org/#/c/129449/
For example,
dashboards/project/networks/templates/networks/detail.html
{% block main %}
{% include "project/networks/_detail_overview.html" %}
<hr>
<div id="subnets">
{{ subnets_table.render }}
</div>
<div id="ports">
{{ ports_table.render }}
</div>
{% if dhcp_agent_support %}
<div id="agents">
{{ agents_table.render }}
</div>
{% endif %}
{% endblock %}
In most pages:
{% block main %}
<div class="row">
<div class="col-sm-12">
{% include "admin/volumes/snapshots/_detail_overview.html" %}
</div>
</div>
{% endblock %}
To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1400317/+subscriptions
Follow ups
References