Show More
@@ -126,6 +126,7 b' class SummaryController(BaseRepoControll' | |||
|
126 | 126 | .filter(Statistics.repository == dbrepo)\ |
|
127 | 127 | .scalar() |
|
128 | 128 | |
|
129 | c.stats_percentage = 0 | |
|
129 | 130 | |
|
130 | 131 | if stats and stats.languages: |
|
131 | 132 | c.no_data = False is dbrepo.enable_statistics |
@@ -137,6 +138,14 b' class SummaryController(BaseRepoControll' | |||
|
137 | 138 | key=lambda k: k[1])[:10] |
|
138 | 139 | ) |
|
139 | 140 | ) |
|
141 | last_rev = stats.stat_on_revision | |
|
142 | c.repo_last_rev = c.rhodecode_repo.count() - 1 \ | |
|
143 | if c.rhodecode_repo.revisions else 0 | |
|
144 | if last_rev == 0 or c.repo_last_rev == 0: | |
|
145 | pass | |
|
146 | else: | |
|
147 | c.stats_percentage = '%.2f' % ((float((last_rev)) / | |
|
148 | c.repo_last_rev) * 100) | |
|
140 | 149 | else: |
|
141 | 150 | c.commit_data = json.dumps({}) |
|
142 | 151 | c.overview_data = json.dumps([[ts_min_y, 0], [ts_max_y, 10] ]) |
@@ -301,13 +301,17 b'' | |||
|
301 | 301 | </div> |
|
302 | 302 | |
|
303 | 303 | <div class="table"> |
|
304 | <div style="padding:0 10px 10px 15px;font-size: 1.2em;"> | |
|
304 | 305 | %if c.no_data: |
|
305 | <div style="padding:0 10px 10px 15px;font-size: 1.2em;">${c.no_data_msg} | |
|
306 | ${c.no_data_msg} | |
|
306 | 307 | %if h.HasPermissionAll('hg.admin')('enable stats on from summary'): |
|
307 | 308 | [${h.link_to(_('enable'),h.url('edit_repo',repo_name=c.repo_name))}] |
|
308 | 309 | %endif |
|
309 |
|
|
|
310 |
%e |
|
|
310 | ||
|
311 | %else: | |
|
312 | ${_('Loaded in')} ${c.stats_percentage} % | |
|
313 | %endif | |
|
314 | </div> | |
|
311 | 315 | <div id="commit_history" style="width:460px;height:300px;float:left"></div> |
|
312 | 316 | <div style="clear: both;height: 10px"></div> |
|
313 | 317 | <div id="overview" style="width:460px;height:100px;float:left"></div> |
General Comments 0
You need to be logged in to leave comments.
Login now