]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
toaster: Project page fix targets url and tooltip placement
authorMichael Wood <michael.g.wood@intel.com>
Thu, 19 Mar 2015 11:09:43 +0000 (11:09 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 24 Mar 2015 22:54:36 +0000 (22:54 +0000)
Make sure we point to the all targets page for the notification links.
Also fix the tooltip placements and a minor typo on the targets page.

[YOCTO #7480]

Signed-off-by: Michael Wood <michael.g.wood@intel.com>
lib/toaster/toastergui/templates/project.html
lib/toaster/toastergui/templates/targets.html

index 0f538b9ffbcc8c19e0d122cc76f3ee8ca30de4a7..65c0919bc908ee1e00f9bcf766b1f265cde3c5db 100644 (file)
@@ -299,7 +299,7 @@ vim: expandtab tabstop=2
         <a href="{% url 'importlayer' %}">Import layer</a></p>
       <ul class="unstyled configuration-list">
           <li ng-repeat="l in layers track by l.id" class="animate-repeat">
-            <a href="{[l.layerdetailurl]}" class="layer-info" data-toggle="tooltip" tooltip="{[l.giturl]} | {[l.branch.name]}">{[l.name]}</a>
+            <a href="{[l.layerdetailurl]}" class="layer-info" data-toggle="tooltip" tooltip-placement="right" tooltip="{[l.giturl]} | {[l.branch.name]}">{[l.name]}</a>
             <i class="icon-trash" ng-click="layerDel(l.id)" tooltip="Delete"></i>
                       </li>
       </ul>
@@ -434,7 +434,7 @@ angular.element(document).ready(function() {
   scope.urls.xhr_edit = "{% url 'xhr_projectedit' project.id %}";
   scope.urls.xhr_datatypeahead = "{% url 'xhr_datatypeahead' %}";
   scope.urls.layers = "{% url 'layers' %}";
-  scope.urls.targets = "{% url 'targets' %}";
+  scope.urls.targets = "{% url 'all-targets' %}";
   scope.urls.importlayer = "{% url 'importlayer'%}";
   scope.urls.layer = "{% url 'base_layerdetails' %}";
   scope.project = {{prj|json}};
index f918d6cff2293b9fd6a92a13bf9ea057a7fe07fb..27ff2be9284afbe3ed71b504d0ebdd223a320c1f 100644 (file)
@@ -38,7 +38,7 @@
   {% else %}
     <div class="alert alert-info">
       <p class="lead">
-       Toaster has not target information. To generate target information you can:<br/>
+       Toaster has no target information. To generate target information you can:<br/>
        <ul class="lead">
        <li style="margin-top: 10px"> <a href="https://wiki.yoctoproject.org/wiki/Setting_up_a_hosted_managed_mode_for_Toaster#LayerSources">Configure a layer source</a></li>
        <li style="margin-top: 10px">  <a href="{% url 'importlayer' %}">Import a layer</a></li>