예제 #1
0
 def number_gathered_as_word(self):
     return nice_number(self.number_gathered())
예제 #2
0
 def number_as_word(self):
     return nice_number(self.number())
예제 #3
0
 def number_as_word(self):
     return nice_number(self.number())
예제 #4
0
 def number_gathered_as_word(self):
     return nice_number(self.number_gathered())
예제 #5
0
파일: core.py 프로젝트: bgordo3/docassemble
    def number_as_word(self):
        """Returns the number of items in the set, spelling out the number if
        ten or below.  Forces the gathering of the items if necessary.

        """
        return nice_number(self.number())
예제 #6
0
파일: core.py 프로젝트: bgordo3/docassemble
    def number_gathered_as_word(self):
        """Returns the number of items in the set, spelling out the number if
        ten or below.  Does not force the gathering of the items.

        """
        return nice_number(self.number_gathered())
예제 #7
0
파일: core.py 프로젝트: bgordo3/docassemble
 def number_gathered_as_word(self):
     """Returns the number of elements in the list, spelling out the number if ten 
     or below.  Does not force the gathering of the elements."""
     return nice_number(self.number_gathered())