Given the name of the clear checkbox input, return the HTML id for it.
(self, name)
| 565 | return name + "-clear" |
| 566 | |
| 567 | def clear_checkbox_id(self, name): |
| 568 | """ |
| 569 | Given the name of the clear checkbox input, return the HTML id for it. |
| 570 | """ |
| 571 | return name + "_id" |
| 572 | |
| 573 | def is_initial(self, value): |
| 574 | """ |