# HG changeset patch # User Christian Oyarzun # Date 1430948895 14400 # Node ID c69cb0647c8ac68b3572692645c2500f3fbc2bbb # Parent 572f62542047ded9f814af5db388dadec6425dc9 templates: remove mime type column from file browser (Issue #51) diff -r 572f62542047 -r c69cb0647c8a kallithea/templates/files/files_browser.html --- a/kallithea/templates/files/files_browser.html Sat May 09 21:31:48 2015 +0000 +++ b/kallithea/templates/files/files_browser.html Wed May 06 17:48:15 2015 -0400 @@ -59,7 +59,6 @@ ${_('Name')} ${_('Size')} - ${_('Mimetype')} ${_('Last Revision')} ${_('Last Modified')} ${_('Last Committer')} @@ -76,7 +75,6 @@ - %endif @@ -91,11 +89,6 @@ %endif - %if node.is_file(): - ${node.mimetype} - %endif - - %if node.is_file(): ${h.show_id(node.last_changeset)} %endif diff -r 572f62542047 -r c69cb0647c8a kallithea/tests/functional/test_files.py --- a/kallithea/tests/functional/test_files.py Sat May 09 21:31:48 2015 +0000 +++ b/kallithea/tests/functional/test_files.py Wed May 06 17:48:15 2015 -0400 @@ -63,7 +63,6 @@ response.mustcontain('tests') response.mustcontain('README.rst') response.mustcontain('1.1 KiB') - response.mustcontain('text/x-python') def test_index_different_branch(self): self.log_user()