diff --git a/tabellio/documents/document.py b/tabellio/documents/document.py index 09af68e..e90eb57 100644 --- a/tabellio/documents/document.py +++ b/tabellio/documents/document.py @@ -132,3 +132,8 @@ class Document(Item, BasePublication): @property def seance_vote_date_str(self): return self.seance_vote_date.strftime('%d/%m/%Y') + + def get_authors_as_string(self): + if self.author_is_government: + return 'Gouvernement' + return BasePublication.get_authors_as_string(self)