Exemplo n.º 1
0
	def __unicode__(self):
		return u'Reminder(comment=%s, created_by=%s, created_date=%s, date=%s, send_date=%s, sent=%s)' % (
			safeHtmlString(self.comment, 255),
			self.created_by,
			self.create_date,
			self.date,
			self.send_date,
			self.sent
		)
Exemplo n.º 2
0
	def __unicode__(self):
		return u'%s' % safeHtmlString(self.title, 50)
Exemplo n.º 3
0
	def __unicode__(self):
		return u'%s' % safeHtmlString(self.text, 100)
Exemplo n.º 4
0
	def __unicode__(self):
		return u'%s' % safeHtmlString(self.name, 255)
Exemplo n.º 5
0
	def __unicode__(self):
		if get_language()=='da':
			return u'%s' % safeHtmlString(self.name_da, 100)
		else:
			return u'%s' % safeHtmlString(self.name_en, 100)
Exemplo n.º 6
0
	def __unicode__(self):
		return u'%s (%s)' % (
			safeHtmlString(self.title, 50),
			safeHtmlString(self.competence_field.toString(), 50))
Exemplo n.º 7
0
	def __unicode__(self):
		return u'%s - %s - %s%s - %s' % (safeHtmlString(self.title, 20),safeHtmlString(self.development_plan_type.name,50),self.language_code,self.company and " - %s" % self.company or "" , self.is_manager and _("manager") or "")
Exemplo n.º 8
0
	def __unicode__(self):
		return safeHtmlString(self.name, 50)
Exemplo n.º 9
0
	def __unicode__(self):
		return u'%s' % safeHtmlString(self.subject_en, 255)