-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Thakur Adhikari
committed
Apr 1, 2021
1 parent
74d19cd
commit 0eb0511
Showing
4 changed files
with
57 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
<g:if test="${helpLinks && helpLinks.size() >= 6}"> | ||
<div id="help-links"> | ||
<div class="row-fluid"> | ||
<span class="span4"> | ||
<div class="row-fluid row"> | ||
<span class="span4 col-sm-4"> | ||
<g:render template="helpLink" model="${helpLinks[0]+[category:1]}"/> | ||
</span> | ||
<span class="span4"> | ||
<span class="span4 col-sm-4"> | ||
<g:render template="helpLink" model="${helpLinks[1]+[category:2]}"/> | ||
</span> | ||
<span class="span4"> | ||
<span class="span4 col-sm-4"> | ||
<g:render template="helpLink" model="${helpLinks[2]+[category:3]}"/> | ||
</span> | ||
</div> | ||
<div class="row-fluid"> | ||
<span class="span4"> | ||
<div class="row-fluid row"> | ||
<span class="span4 col-sm-4"> | ||
<g:render template="helpLink" model="${helpLinks[3]+[category:4]}"/> | ||
</span> | ||
<span class="span4"> | ||
<span class="span4 col-sm-4"> | ||
<g:render template="helpLink" model="${helpLinks[4]+[category:5]}"/> | ||
</span> | ||
<span class="span4"> | ||
<span class="span4 col-sm-4"> | ||
<g:render template="helpLink" model="${helpLinks[5]+[category:6]}"/> | ||
</span> | ||
</div> | ||
</div> | ||
</g:if> | ||
</g:if> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
<div class="row-fluid statistics"> | ||
<div class="statistics"> | ||
%{--This section expects exactly 6 statistics to display--}% | ||
<div class="row-fluid"> | ||
<div class="span4 box1"> | ||
<div class="row-fluid row"> | ||
<div class="col-sm-4 span4 box1"> | ||
<g:render template="/report/statistic" model="${statistics[0]}"/> | ||
</div> | ||
<div class="span4 box2"> | ||
<div class="col-sm-4 span4 box2"> | ||
<g:render template="/report/statistic" model="${statistics[1]}"/> | ||
</div> | ||
<div class="span4 box3"> | ||
<div class="col-sm-4 span4 box3"> | ||
<g:render template="/report/statistic" model="${statistics[2]}"/> | ||
</div> | ||
</div> | ||
<div class="row-fluid"> | ||
<div class="span4 box4"> | ||
<div class="row"> | ||
<div class="col-sm-4 span4 box4"> | ||
<g:render template="/report/statistic" model="${statistics[3]}"/> | ||
</div> | ||
<div class="span4 box5"> | ||
<div class="col-sm-4 span4 box5"> | ||
<g:render template="/report/statistic" model="${statistics[4]}"/> | ||
</div> | ||
<div class="span4 box6"> | ||
<div class="col-sm-4 span4 box6"> | ||
<g:render template="/report/statistic" model="${statistics[5]}"/> | ||
</div> | ||
</div> | ||
<div class="row-fluid"> | ||
<div class="span12 text-center"><a href="#" class="show-more-stats">Show more stats <i class="fa fa-refresh"></i></a></div> | ||
<div class="row"> | ||
<div class="col-sm-12 span12 align-content-center text-center"><a href="#" class="show-more-stats">Show more stats <i class="fa fa-refresh"></i></a></div> | ||
</div> | ||
</div> |