-
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.
Fixed: dropdown menu not working in homepage #2193
- Loading branch information
Thakur Adhikari
committed
Apr 15, 2021
1 parent
3bcd8f8
commit 6421fc0
Showing
2 changed files
with
45 additions
and
50 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,28 +1,28 @@ | ||
<div class="statistics"> | ||
%{--This section expects exactly 6 statistics to display--}% | ||
<div class="row-fluid row"> | ||
<div class="col-sm-4 span4 box1"> | ||
<div class="row"> | ||
<div class="col-sm-4 box1"> | ||
<g:render template="/report/statistic" model="${statistics[0]}"/> | ||
</div> | ||
<div class="col-sm-4 span4 box2"> | ||
<div class="col-sm-4 box2"> | ||
<g:render template="/report/statistic" model="${statistics[1]}"/> | ||
</div> | ||
<div class="col-sm-4 span4 box3"> | ||
<div class="col-sm-4 box3"> | ||
<g:render template="/report/statistic" model="${statistics[2]}"/> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-sm-4 span4 box4"> | ||
<div class="col-sm-4 box4"> | ||
<g:render template="/report/statistic" model="${statistics[3]}"/> | ||
</div> | ||
<div class="col-sm-4 span4 box5"> | ||
<div class="col-sm-4 box5"> | ||
<g:render template="/report/statistic" model="${statistics[4]}"/> | ||
</div> | ||
<div class="col-sm-4 span4 box6"> | ||
<div class="col-sm-4 box6"> | ||
<g:render template="/report/statistic" model="${statistics[5]}"/> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-sm-12 span12 align-content-center text-center"><a href="#" class="show-more-stats text-dark">Show more stats <i class="fa fa-refresh"></i></a></div> | ||
<div class="col-sm-12 align-content-center text-center"><a href="#" class="show-more-stats text-dark">Show more stats <i class="fa fa-refresh"></i></a></div> | ||
</div> | ||
</div> |