summaryrefslogtreecommitdiffstats
path: root/funcweb
diff options
context:
space:
mode:
authorLuke Macken <lmacken@redhat.com>2008-01-24 15:25:18 -0500
committerLuke Macken <lmacken@redhat.com>2008-01-24 15:25:18 -0500
commit5fdab22d5fba9b21920313bd6679de15d9b9e938 (patch)
treeac8fdda8c24ea178bf8b3394bae061e6ca26cdf7 /funcweb
parent355d15f9d450c5997ef74b1fb0fc3745bf2dfe35 (diff)
downloadthird_party-func-5fdab22d5fba9b21920313bd6679de15d9b9e938.tar.gz
third_party-func-5fdab22d5fba9b21920313bd6679de15d9b9e938.tar.xz
third_party-func-5fdab22d5fba9b21920313bd6679de15d9b9e938.zip
Trim our minion names if we have to, until we alter our layout
Diffstat (limited to 'funcweb')
-rw-r--r--funcweb/funcweb/templates/minion.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcweb/funcweb/templates/minion.html b/funcweb/funcweb/templates/minion.html
index 2223d57..f171b00 100644
--- a/funcweb/funcweb/templates/minion.html
+++ b/funcweb/funcweb/templates/minion.html
@@ -5,7 +5,7 @@
<body>
<div id="modules" class="modules">
<ul py:for="minion, mods in modules.items()">
- <h2>${minion}</h2>
+ <h2>${minion[:13]}</h2>
<li py:for="module in mods">
<a href="#" onclick="$('#col4').hide();$('#col3').hide().load('/minion/${minion}/${module}').show('slow');">${module}</a>
</li>