Browse Source

Fix Delete repository message (#3260)

tags/v1.4.0-rc1
muhfaris Lauris BH 7 years ago
parent
commit
32fff997f5
2 changed files with 6 additions and 3 deletions
  1. +4
    -1
      public/js/index.js
  2. +2
    -2
      templates/admin/repo/list.tmpl

+ 4
- 1
public/js/index.js View File

@@ -1683,7 +1683,10 @@ function showDeletePopup() {
filter += "#" + $this.attr("id")
}

$('.delete.modal' + filter).modal({
var dialog = $('.delete.modal' + filter);
dialog.find('.repo-name').text($this.data('repo-name'));

dialog.modal({
closable: false,
onApprove: function() {
if ($this.data('type') == "form") {


+ 2
- 2
templates/admin/repo/list.tmpl View File

@@ -37,7 +37,7 @@
<td>{{.NumIssues}}</td>
<td>{{SizeFmt .Size}}</td>
<td><span title="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</span></td>
<td><a class="delete-button" href="" data-url="{{$.Link}}/delete?page={{$.Page.Current}}" data-id="{{.ID}}"><i class="trash icon text red"></i></a></td>
<td><a class="delete-button" href="" data-url="{{$.Link}}/delete?page={{$.Page.Current}}" data-id="{{.ID}}" data-repo-name="{{.Name}}"><i class="trash icon text red"></i></a></td>
</tr>
{{end}}
</tbody>
@@ -55,7 +55,7 @@
</div>
<div class="content">
<p>{{.i18n.Tr "repo.settings.delete_desc"}}</p>
{{.i18n.Tr "repo.settings.delete_notices_2"}}<br>
{{.i18n.Tr "repo.settings.delete_notices_2" `<span class="repo-name"></span>` | Safe}}<br>
{{.i18n.Tr "repo.settings.delete_notices_fork_1"}}<br>
</div>
{{template "base/delete_modal_actions" .}}


Loading…
Cancel
Save