[Groonga-commit] groonga/groonga-admin at d971cfd [master] table show: show columns in side bar

Back to archive index

Kouhei Sutou null+****@clear*****
Wed Dec 31 17:22:51 JST 2014


Kouhei Sutou	2014-12-31 17:22:51 +0900 (Wed, 31 Dec 2014)

  New Revision: d971cfdb238679a2a0af17e07854ccb2840b053e
  https://github.com/groonga/groonga-admin/commit/d971cfdb238679a2a0af17e07854ccb2840b053e

  Message:
    table show: show columns in side bar

  Modified files:
    app/views/tables/show.html

  Modified: app/views/tables/show.html (+6 -4)
===================================================================
--- app/views/tables/show.html    2014-12-31 17:20:02 +0900 (0468658)
+++ app/views/tables/show.html    2014-12-31 17:22:51 +0900 (8e2055c)
@@ -23,14 +23,16 @@
 
     <div class="panel panel-default">
       <div class="panel-heading">
-        <h2 class="panel-title">Tables</h2>
+        <h2 class="panel-title">
+          <a href="#/tables/{{table.name}}/columns/">Columns</a>
+        </h2>
       </div>
       <div class="panel-body">
         <div class="list-group">
-          <a ng-repeat="table in tables track by $index"
+          <a ng-repeat="column in table.columns track by $index"
              class="list-group-item"
-             href="#/tables/{{table.name}}">
-            {{table.name}}
+             href="#/tables/{{table.name}}/columns/{{column.name}}">
+            {{column.name}}
           </a>
         </div>
       </div>
-------------- next part --------------
HTML����������������������������...
다운로드 



More information about the Groonga-commit mailing list
Back to archive index