You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2013/10/03 19:14:07 UTC

[02/50] git commit: [#6392] ticket:432 Add label for checkbox

[#6392] ticket:432 Add label for checkbox


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/f47df1cd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/f47df1cd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/f47df1cd

Branch: refs/heads/cj/6422
Commit: f47df1cd21c98f53b5c0d58d5d68f4d5d9089be1
Parents: 991f8bc
Author: Igor Bondarenko <je...@gmail.com>
Authored: Wed Sep 11 14:56:00 2013 +0300
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Tue Sep 24 17:36:24 2013 +0000

----------------------------------------------------------------------
 .../allura/ext/admin/templates/admin_widgets/card_field.html  | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/f47df1cd/Allura/allura/ext/admin/templates/admin_widgets/card_field.html
----------------------------------------------------------------------
diff --git a/Allura/allura/ext/admin/templates/admin_widgets/card_field.html b/Allura/allura/ext/admin/templates/admin_widgets/card_field.html
index 964ea65..24533c7 100644
--- a/Allura/allura/ext/admin/templates/admin_widgets/card_field.html
+++ b/Allura/allura/ext/admin/templates/admin_widgets/card_field.html
@@ -78,7 +78,12 @@
         <div class="block-list grid-13" style="display: none">
           <ul>
           {% for u, reason in block_list[name] %}
-            <li><input type="checkbox" name="user_id" value="{{ u._id }}">{{ u.username }} {{ '(' + reason + ')' if reason else '' }}</li>
+          <li>
+            <label>
+              <input type="checkbox" name="user_id" value="{{ u._id }}">
+              {{ u.username }} {{ '(' + reason + ')' if reason else '' }}
+            </label>
+          </li>
           {% endfor %}
           </ul>
         </div>