Skip to content

Commit

Permalink
Closes-Bug:#1574529
Browse files Browse the repository at this point in the history
Fixed the include path.

Change-Id: Ie12f9fb4b271208188b5cf87f70f58f75eb07927
(cherry picked from commit 53a74ec)
  • Loading branch information
vishnuvv committed May 26, 2016
1 parent d439bb7 commit 85d1176
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion openstack_dashboard/dashboards/project/lbaas/tables.py
Expand Up @@ -165,7 +165,7 @@ class UpdateMonitorLink(policy.PolicyTargetMixin, tables.LinkAction):
policy_rules = (("network", "update_health_monitor"),)

def get_link_url(self, monitor):
base_url = reverse("horizon:project:loadbalancers:updatemonitor",
base_url = reverse("horizon:project:lbaas:updatemonitor",
kwargs={'monitor_id': monitor.id})
return base_url

Expand Down
Expand Up @@ -7,5 +7,5 @@
{% endblock page_header %}

{% block main %}
{% include 'project/loadbalancers/_updatemember.html' %}
{% endblock %}
{% include 'project/lbaas/_updatemember.html' %}
{% endblock %}
Expand Up @@ -7,5 +7,5 @@
{% endblock page_header %}

{% block main %}
{% include 'project/loadbalancers/_updatemonitor.html' %}
{% endblock %}
{% include 'project/lbaas/_updatemonitor.html' %}
{% endblock %}
Expand Up @@ -7,5 +7,5 @@
{% endblock page_header %}

{% block main %}
{% include 'project/loadbalancers/_updatepool.html' %}
{% include 'project/lbaas/_updatepool.html' %}
{% endblock %}
Expand Up @@ -7,5 +7,5 @@
{% endblock page_header %}

{% block main %}
{% include 'project/loadbalancers/_updatevip.html' %}
{% endblock %}
{% include 'project/lbaas/_updatevip.html' %}
{% endblock %}

0 comments on commit 85d1176

Please sign in to comment.