Esempio n. 1
0
    def _getDefinedResponsible(self, task):
        html = []
        index = 0
        
        for r in task.getResponsibleList() :
            text = """
            <tr>
                <td><input type="checkbox" name="responsibles" value="%s"></td>
                <td>%s</td>
            </tr>"""%(index,r.getFullName())
            index = index + 1
            html.append(text)

        return """
            """.join(html)
Esempio n. 2
0
    def _getDefinedResponsible(self, task):
        html = []
        index = 0

        for r in task.getResponsibleList():
            text = """
            <tr>
                <td><input type="checkbox" name="responsibles" value="%s"></td>
                <td>%s</td>
            </tr>""" % (index, r.getFullName())
            index = index + 1
            html.append(text)

        return """
            """.join(html)
Esempio n. 3
0
    def _getResponsibleList(self, task) :
        html = []                
        for r in task.getResponsibleList() :            
            html.append(r.getFullName())

        return """, """.join(html)
Esempio n. 4
0
    def _getResponsibleList(self, task):
        html = []
        for r in task.getResponsibleList():
            html.append(r.getFullName())

        return """, """.join(html)