Project

General

Profile

« Previous | Next » 

Revision 50064

made a new look

View differences:

statistics.html
7 7
                    <li role="presentation" class="active"><a href="#tabstats" role="tab" id="profile-tab"
8 8
                                                              data-toggle="tab"
9 9
                                                              aria-controls="profile" aria-expanded="false"><h4>
10
                        Graph Statistics</h4></a></li>
11
                    <li role="presentation"><a href="#graphstats" id="home-tab" role="tab" data-toggle="tab"
12
                                               aria-controls="home" aria-expanded="true"><h4>Tabular Statistics</h4></a>
13
                    </li>
10
                        Statistics</h4></a></li>
11

  
14 12
                    <li role="presentation"><a href="#historystats" role="tab" id="profile-tab" data-toggle="tab"
15
                                               aria-controls="profile" aria-expanded="false"><h4>History
16
                        Statistics </h4></a></li>
13
                                               aria-controls="profile" aria-expanded="false"><h4>History</h4></a></li>
17 14

  
18 15
                </ul>
19 16

  
20 17
                <div id="myTabContent" class="tab-content">
21 18

  
22 19

  
23
                    <div role="tabpanel" class="tab-pane fade active in" id="tabstats" aria-labelledby="home-tab">
24
                        <div class="row">
25
                            <div class="col-lg-12">
26 20

  
27
                                <div>
28
                                    <div class="row center">
29
                                        <div class="col-lg-4 col-lg-offset-2 col-sm-12">
30
                                            <h4><b>Links</b></h4>
31
                                        </div>
32
                                        <div class="col l4 s12">
33
                                            <h4><b>Objects</b></h4>
34
                                        </div>
35
                                    </div>
36
                                    <div class="row center">
37
                                        <div class="col-lg-4 col-lg-offset-2 col-sm-12">
38
                                            <div id="chart_links"></div>
39
                                        </div>
40 21

  
41
                                        <div class="col-lg-4 ">
42
                                            <div id="chart_objects"></div>
43
                                        </div>
44
                                    </div>
45

  
46

  
47
                                    <div class="row center">
48
                                        <div class="col-lg-4 col-lg-offset-2 col-sm-12">
49
                                            <h4><b>Literature</b></h4>
50
                                        </div>
51
                                        <div class="col-lg-4 col-lg-offset-2 col-sm-12">
52
                                            <h4><b>Datasets</b></h4>
53
                                        </div>
54
                                    </div>
55
                                    <div class="row center">
56
                                        <div class="col-lg-4 col-lg-offset-2 col-sm-12">
57
                                            <div id="chart_publication"></div>
58
                                        </div>
59

  
60
                                        <div class="col-lg-4">
61
                                            <div id="chart_dataset"></div>
62
                                        </div>
63
                                    </div>
64
                                </div>
65
                            </div>
66
                        </div>
67
                    </div>
68

  
69

  
70
                    <div role="tabpanel" class="tab-pane fade " id="graphstats" aria-labelledby="dropdown1-tab">
22
                    <div role="tabpanel" class="tab-pane fade in active" id="tabstats" aria-labelledby="dropdown1-tab">
71 23
                        <div class="row">
72 24
                            <div class="col-lg-12">
73 25

  
......
77 29
                                            <div class="row">
78 30

  
79 31
                                                <div class="col-lg-12">
80
                                                    <table class="table table-striped">
32
                                                    <table class="table ">
33

  
34
                                                        <col>
35
                                                          <colgroup span="3"></colgroup>
36
                                                          <tr>
37
                                                              <td rowspan="1" class="text-left"><b>Content Provider</b></td>
38
                                                            <th rowspan="1" class="text-right">Links</th>
39
                                                            <th colspan="4" scope="colgroup" class="text-center">Object</th>
40
                                                          </tr>
41
                                                          <tr>
42
                                                            <th class="text-left"></th>
43
                                                            <th class="text-right"></th>
44
                                                            <th class="text-right" scope="col">Publication</th>
45
                                                            <th class="text-right" scope="col">Dataset</th>
46
                                                            <th class="text-right" scope="col">Unknown</th>
47
                                                            <th class="text-right" scope="col">total</th>
48
                                                          </tr>
49

  
50

  
51

  
52
                                                        <!--
81 53
                                                        <tr class="orange-text">
82 54

  
83 55
                                                            <td class="text-left"><b>Content provider</b></td>
......
87 59
                                                            <td class="text-right"><b>Referred datasets</b></td>
88 60
                                                            <td class="text-right"><b>Referred objects of unknown
89 61
                                                                typology</b></td>
62
                                                        </tr>
63
                                                        -->
90 64

  
91
                                                            <!--<td class="right-align">Contributed relationships</td> -->
92
                                                        </tr>
93 65
                                                        <tr ng-repeat="item in stats">
94 66
                                                            <td class="left-align"><a
95
                                                                    href='#/datasource/id/{{ item.acronym }}'>{{ item.datasource }} </a>
67
                                                                    href='#/datasource/id/{{ item.acronym }}'>{{ item.datasourceName }} </a>
96 68
                                                            </td>
97
                                                            <td class="text-right"> {{ item.numberOfRelations }}</td>
98
                                                            <td class="text-right">{{ item.numberOfObjects }}</td>
99
                                                            <td class="text-right">{{ item.referredPublication }}</td>
100
                                                            <td class="text-right">{{ item.referredDataset }}</td>
101
                                                            <td class="text-right">{{ item.referredUnknown }}
69
                                                            <td class="text-right"> {{ item.links }}</td>
70
                                                            <td class="text-right">{{ item.publication }}</td>
71
                                                            <td class="text-right">{{ item.dataset }}</td>
72
                                                            <td class="text-right">{{ item.unknown }}</td>
73
                                                            <td class="text-right">{{ item.total }}
102 74
                                                            </td>
103 75

  
104 76
                                                        </tr>

Also available in: Unified diff