Changeset - 9846e4d1f9cd
[Not reviewed]
default
0 6 0
Mads Kiilerich - 8 years ago 2017-06-25 18:27:28
mads@kiilerich.com
style: drop some redundant and empty divs
6 files changed with 12 insertions and 14 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/admin/repos/repo_creating.html
Show inline comments
 
@@ -29,7 +29,7 @@
 

	
 
        <div id="progress">
 
            <div class="progress progress-striped active">
 
                <div class="progress-bar progress-bar" role="progressbar"
 
                <div class="progress-bar" role="progressbar"
 
                    aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
 
                </div>
 
            </div>
kallithea/templates/admin/user_groups/user_group_edit_settings.html
Show inline comments
 
@@ -23,18 +23,22 @@ ${h.form(url('update_users_group', id=c.
 
                <div class="form-group">
 
                    <label class="control-label">${_('Members')}:</label>
 
                    <div>
 
                        <div>
 
                        <div class="pull-left">
 
                            <div class="text">${_('Chosen group members')}</div>
 
                            ${h.select('users_group_members',[],c.group_members,multiple=True,size=8,style="min-width:210px",class_='form-control')}
 
                            ${h.select('users_group_members',[],c.group_members,multiple=True,size=8,style="width:210px",class_='form-control')}
 
                        </div>
 
                        <div class="pull-left">
 
                          <div class="text">&nbsp;</div>
 
                        <div>
 
                            <i id="add_element" class="icon-left-open" title="Choose selected available"></i>
 
                            <div></div>
 
                          </div>
 
                          <div>
 
                            <i id="remove_element" class="icon-right-open" title="Remove selected chosen"></i>
 
                        </div>
 
                        <div>
 
                        </div>
 
                        <div class="pull-left">
 
                            <div class="text">${_('Available members')}</div>
 
                            ${h.select('available_members',[],c.available_members,multiple=True,size=8,style="min-width:210px",class_='form-control')}
 
                            ${h.select('available_members',[],c.available_members,multiple=True,size=8,style="width:210px",class_='form-control')}
 
                        </div>
 
                    </div>
 
                </div>
kallithea/templates/base/root.html
Show inline comments
 
@@ -107,7 +107,6 @@
 
    </head>
 
    <body>
 
      <nav class="navbar navbar-inverse">
 
        <div>
 
          <div class="navbar-header" id="logo">
 
            <a class="navbar-brand" href="${h.url('home')}">
 
                <img class="pull-left" src="${h.url('/images/kallithea-logo.svg')}" alt="Kallithea"/>
 
@@ -125,7 +124,6 @@
 
          <div id="navbar" class="navbar-collapse collapse">
 
            <%block name="header_menu"/>
 
          </div>
 
        </div>
 
      </nav>
 

	
 
      ${next.body()}
kallithea/templates/files/diff_2way.html
Show inline comments
 
@@ -33,7 +33,6 @@ ${self.repo_context_bar('changelog')}
 
    <div class="no-padding panel-body">
 
        <div class="panel panel-default">
 
            <div class="panel-heading clearfix">
 
                <div class="changeset_header">
 
                    <div class="pull-left">
 
                        ${h.link_to(h.safe_unicode(c.node1.path),h.url('files_home',repo_name=c.repo_name,
 
                        revision=c.cs2.raw_id,f_path=h.safe_unicode(c.node1.path)))}
 
@@ -55,7 +54,6 @@ ${self.repo_context_bar('changelog')}
 
                      ${h.checkbox('edit_mode', label=_('Edit'))}
 
                    </div>
 
                </div>
 
            </div>
 
            <div id="compare"></div>
 
        </div>
 
    </div>
kallithea/templates/followers/followers_data.html
Show inline comments
 
@@ -6,10 +6,9 @@
 
            ${h.gravatar_div(f.user.email, size=24)}
 
            <span> <b>${f.user.username}</b> (${f.user.name} ${f.user.lastname})</span>
 
        </div>
 
        <div></div>
 
        <div class="follower_date">${_('Started following -')}
 
        <span data-toggle="tooltip" title="${f.follows_from}"> ${h.age(f.follows_from)}</span></div>
 
        <div></div>
 
          <span data-toggle="tooltip" title="${f.follows_from}"> ${h.age(f.follows_from)}</span>
 
        </div>
 
    </div>
 
% endfor
 

	
kallithea/templates/forks/forks_data.html
Show inline comments
 
@@ -11,7 +11,6 @@
 
                </span>
 
                <div>${f.description}</div>
 
            </div>
 
            <div></div>
 
            <div class="follower_date">${_('Forked')} -
 
                <span data-toggle="tooltip" title="${h.fmt_date(f.created_on)}"> ${h.age(f.created_on)}</span>
 
                <a title="${_('Compare fork with %s') % c.repo_name}"
0 comments (0 inline, 0 general)