Changeset - 428c1193ee40
[Not reviewed]
default
0 2 0
domruf - 8 years ago 2017-05-18 21:09:15
dominikruf@gmail.com
templates: fix btn markup
2 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/admin/notifications/show_notification.html
Show inline comments
 
@@ -28,7 +28,7 @@
 
              ${c.notification.description}
 
          </span>
 
          <span class="delete-notifications">
 
            <span id="${c.notification.notification_id}" class="delete-notification action"><i class="icon-minus-circled"></i></span>
 
            <span id="${c.notification.notification_id}" class="delete-notification action"><i class="btn icon-minus-circled"></i></span>
 
          </span>
 
        </div>
 
        <div class="notification-body">
kallithea/templates/pullrequests/pullrequest_data.html
Show inline comments
 
@@ -61,7 +61,7 @@
 
      <td>
 
        %if pr.owner_id == request.authuser.user_id:
 
          ${h.form(url('pullrequest_delete', repo_name=pr.other_repo.repo_name, pull_request_id=pr.pull_request_id))}
 
          <button class="btn btn-default btn-xs"
 
          <div class="btn btn-default btn-xs"
 
                  id="remove_${pr.pull_request_id}"
 
                  name="remove_${pr.pull_request_id}"
 
                  title="${_('Delete Pull Request')}"
 
@@ -70,7 +70,7 @@
 
                          confirm('${_('Confirm again to delete this pull request with %s comments') % len(pr.comments)}'))
 
                      ">
 
            <i class="icon-minus-circled"></i>
 
          </button>
 
          </div>
 
          ${h.end_form()}
 
        %endif
 
      </td>
0 comments (0 inline, 0 general)