qhandjoob resize large links focus jobSearch area add backend in the job preview
Signed-off-by: sebastien <sebastien@perso>
This commit is contained in:
parent
5fc90ec3b2
commit
a5e35a4c6e
2 changed files with 9 additions and 4 deletions
|
|
@ -35,7 +35,7 @@ class JobListWidgetItem(QListWidgetItem):
|
|||
return self.job.publication_date < other.job.publication_date
|
||||
|
||||
def setAttrs(self, storage):
|
||||
text = u'%s' % self.job.title
|
||||
text = u'%s - %s' % (self.job.backend, self.job.title)
|
||||
self.setText(text)
|
||||
|
||||
class MainWindow(QtMainWindow):
|
||||
|
|
@ -125,7 +125,7 @@ class MainWindow(QtMainWindow):
|
|||
self.ui.contractTypeLabel.setText("%s" % job.contract_type)
|
||||
self.ui.formationLabel.setText("%s" % job.formation)
|
||||
self.ui.experienceLabel.setText("%s" % job.experience)
|
||||
self.ui.urlLabel.setText("%s" % job.url)
|
||||
self.ui.urlLabel.setText("<a href='%s'>%s</a>" % (job.url, job.url))
|
||||
self.ui.jobFrame.show()
|
||||
else:
|
||||
self.ui.jobFrame.hide()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue