feat(artifacts): new artifact storage engines allowing an s3 based uploads
This commit is contained in:
parent
fead9d9aed
commit
90a1d3ca75
39 changed files with 1897 additions and 453 deletions
|
|
@ -215,18 +215,35 @@
|
|||
%endif
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<% attached_prs = len(c.rhodecode_db_repo.pull_requests_source + c.rhodecode_db_repo.pull_requests_target) %>
|
||||
% if c.rhodecode_db_repo.pull_requests_source or c.rhodecode_db_repo.pull_requests_target:
|
||||
<tr>
|
||||
<td>
|
||||
${_ungettext('This repository has %s attached pull request.', 'This repository has %s attached pull requests.', attached_prs) % attached_prs}
|
||||
<br/>
|
||||
${_('Consider to archive this repository instead.')}
|
||||
<br/>
|
||||
<strong>${_('Consider to archive this repository instead.')}</strong>
|
||||
</td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
% endif
|
||||
|
||||
<% attached_artifacts = len(c.rhodecode_db_repo.artifacts) %>
|
||||
% if attached_artifacts:
|
||||
<tr>
|
||||
<td>
|
||||
${_ungettext('This repository has %s attached artifact.', 'This repository has %s attached artifacts.', attached_artifacts) % attached_artifacts}
|
||||
<br/>
|
||||
<br/>
|
||||
<strong>${_('Consider to archive this repository instead.')}</strong>
|
||||
</td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
% endif
|
||||
|
||||
</table>
|
||||
<div style="margin: 0 0 20px 0" class="fake-space"></div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue