Example #1
0
 def __unicode__(self):
     return u'%s ft\u00B2, %.2f MBH, %s unit' % (intcomma(
         self.square_feet.just('ft**2')), self.mbh, price(self.cost))
Example #2
0
 def __unicode__(self):
     fuels = '/'.join(map(str, self.fuels.all()))
     return '%.2f MBH, %s %s boiler' % (self.mbh, price(self.cost), fuels)
Example #3
0
 def __unicode__(self):
     cost = price(self.total_cost)
     return '%s after %s year: %s' % (self.building, self.year, cost)
Example #4
0
 def __unicode__(self):
     return '%s: %s' % (self.unit, price(self.cost))
Example #5
0
	def __unicode__(self):
		return '%s: %s' % (self.unit, price(self.cost))
Example #6
0
	def price(self, obj):
		from relator.utilities.templatetags.utils import price
		return price(obj.cost)
Example #7
0
 def price(self, obj):
     from relator.utilities.templatetags.utils import price
     return price(obj.cost)
Example #8
0
	def __unicode__(self):
		power = '{0} ton'.format(self.tons.item())
		if self.mbh: power += ', {0}'.format(self.mbh)
		type = '{1} {0}'.format(self.flow, self.type) if self.flow else unicode(self.type)
		return '%s, %s %s unit' % (power, price(self.cost), type)
Example #9
0
	def __unicode__(self):
		return u'%s ft\u00B2, %.2f ton, %s unit' % (intcomma(self.square_feet.just('ft**2')), self.tons, price(self.cost))
Example #10
0
	def __unicode__(self):
		return '%.2f ton, %s' % (self.tons, price(self.cost))
Example #11
0
	def __unicode__(self):
		return '%.2f ton, %s %s %s system' % (self.tons, price(self.cost), self.flow, self.type)
Example #12
0
	def __unicode__(self):
		if self.max:
			return '%s to %s tons: %s' % (self.min, self.max, price(self.cost))
		return 'More than %s tons: %s' % (self.min, price(self.cost))
Example #13
0
 def __unicode__(self):
     power = '{0} ton'.format(self.tons.item())
     if self.mbh: power += ', {0}'.format(self.mbh)
     type = '{1} {0}'.format(self.flow,
                             self.type) if self.flow else unicode(self.type)
     return '%s, %s %s unit' % (power, price(self.cost), type)
Example #14
0
	def __unicode__(self):
		fuels = '/'.join(map(str, self.fuels.all()))
		return '%.2f MBH, %s %s boiler' % (self.mbh, price(self.cost), fuels)
Example #15
0
	def __unicode__(self):
		cost = price(self.total_cost)
		return '%s after %s year: %s' % (self.building, self.year, cost)