##// END OF EJS Templates
fixed changeset status labels, they now select radio buttons
marcink -
r3102:7251b328 beta
parent child Browse files
Show More
@@ -127,7 +127,8 b''
127 <div id="status_block_container" class="status-block" style="display:none">
127 <div id="status_block_container" class="status-block" style="display:none">
128 %for status,lbl in c.changeset_statuses:
128 %for status,lbl in c.changeset_statuses:
129 <div class="">
129 <div class="">
130 <img src="${h.url('/images/icons/flag_status_%s.png' % status)}" /> <input ${'checked="checked"' if status == cur_status else ''}" type="radio" name="changeset_status" value="${status}"> <label>${lbl}</label>
130 <img src="${h.url('/images/icons/flag_status_%s.png' % status)}" /> <input ${'checked="checked"' if status == cur_status else ''}" type="radio" name="changeset_status" id="${status}" value="${status}">
131 <label for="${status}">${lbl}</label>
131 </div>
132 </div>
132 %endfor
133 %endfor
133 </div>
134 </div>
General Comments 0
You need to be logged in to leave comments. Login now