From cbe65f9ec47bc91e221b616c3cddf170621c9cff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rog=C3=A9rio=20Fr=C3=A1?= Date: Mon, 8 Apr 2019 15:33:17 -0300 Subject: [PATCH] =?UTF-8?q?Reuni=C3=A3o=20comiss=C3=A3o=20(#2692)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix #2682 * retira if desnecessário * Fix #2691 --- sapl/comissoes/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sapl/comissoes/views.py b/sapl/comissoes/views.py index 7b8a6fd1d..1db8d23df 100644 --- a/sapl/comissoes/views.py +++ b/sapl/comissoes/views.py @@ -197,7 +197,8 @@ class ReuniaoCrud(MasterDetailCrud): public = [RP_LIST, RP_DETAIL, ] class BaseMixin(MasterDetailCrud.BaseMixin): - list_field_names = ['data', 'nome', 'tema'] + list_field_names = ['data', 'nome', 'tema', 'upload_ata'] + ordering = '-data' class ListView(MasterDetailCrud.ListView): logger = logging.getLogger(__name__)