Changeset - 34a7bec2c525
[Not reviewed]
default
0 5 0
Mads Kiilerich - 11 years ago 2014-08-01 20:28:42
madski@unity3d.com
header: remove dash before branding
5 files changed with 5 insertions and 5 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/base/base.html
Show inline comments
 
@@ -10,7 +10,7 @@
 
                <img src="${h.url('/images/kallithea-logo.svg')}" onerror="this.src='${h.url('/images/kallithea-logo.png')}'" alt="Kallithea"/>
 
            </div>
 
            %if c.site_name:
 
             <div class="branding">- ${c.site_name}</div>
 
             <div class="branding">${c.site_name}</div>
 
            %endif
 
          </a>
 
        </div>
kallithea/templates/login.html
Show inline comments
 
@@ -17,7 +17,7 @@
 
                <img src="${h.url('/images/kallithea-logo.svg')}" onerror="this.src='${h.url('/images/kallithea-logo.png')}'" alt="Kallithea"/>
 
            </div>
 
            %if c.site_name:
 
             <div class="branding">- ${c.site_name}</div>
 
             <div class="branding">${c.site_name}</div>
 
            %endif
 
          </a>
 
        </div>
kallithea/templates/password_reset.html
Show inline comments
 
@@ -17,7 +17,7 @@
 
                <img src="${h.url('/images/kallithea-logo.svg')}" onerror="this.src='${h.url('/images/kallithea-logo.png')}'" alt="Kallithea"/>
 
            </div>
 
            %if c.site_name:
 
             <div class="branding">- ${c.site_name}</div>
 
             <div class="branding">${c.site_name}</div>
 
            %endif
 
          </a>
 
        </div>
kallithea/templates/register.html
Show inline comments
 
@@ -15,7 +15,7 @@
 
                <img src="${h.url('/images/kallithea-logo.svg')}" onerror="this.src='${h.url('/images/kallithea-logo.png')}'" alt="Kallithea"/>
 
            </div>
 
            %if c.site_name:
 
             <div class="branding">- ${c.site_name}</div>
 
             <div class="branding">${c.site_name}</div>
 
            %endif
 
          </a>
 
        </div>
kallithea/tests/functional/test_admin_settings.py
Show inline comments
 
@@ -176,4 +176,4 @@ class TestAdminSettingsController(TestCo
 
                             new_title.decode('utf-8'))
 

	
 
            response = response.follow()
 
            response.mustcontain("""<div class="branding">- %s</div>""" % new_title)
 
            response.mustcontain("""<div class="branding">%s</div>""" % new_title)
0 comments (0 inline, 0 general)