From: David Reyna <[email protected]> Add IDs to the navigation bar links "All builds", "All projects", and "Documentation. This will support test automation.
[YOCTO #11335] Signed-off-by: David Reyna <[email protected]> --- bitbake/lib/toaster/toastergui/templates/base.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/bitbake/lib/toaster/toastergui/templates/base.html b/bitbake/lib/toaster/toastergui/templates/base.html index 496dd6e..3978b0ba 100644 --- a/bitbake/lib/toaster/toastergui/templates/base.html +++ b/bitbake/lib/toaster/toastergui/templates/base.html @@ -100,7 +100,8 @@ <div class="collapse navbar-collapse" id="global-nav"> <ul class="nav navbar-nav"> {% if request.resolver_match.url_name != 'landing' and request.resolver_match.url_name != 'newproject' %} - <li {% if request.resolver_match.url_name == 'all-builds' %} + <li id="navbar-all-builds" + {% if request.resolver_match.url_name == 'all-builds' %} class="active" {% endif %}> <a href="{% url 'all-builds' %}"> @@ -108,8 +109,9 @@ All builds </a> </li> - <li {% if request.resolver_match.url_name == 'all-projects' %} - class="active" + <li id="navbar-all-projects" + {% if request.resolver_match.url_name == 'all-projects' %} + class="active" {% endif %}> <a href="{% url 'all-projects' %}"> <i class="icon-folder-open"></i> @@ -117,7 +119,7 @@ </a> </li> {% endif %} - <li> + <li id="navbar-docs"> <a target="_blank" href="http://www.yoctoproject.org/docs/latest/toaster-manual/toaster-manual.html"> <i class="glyphicon glyphicon-book"></i> Documentation -- 1.9.1 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
