Browse Source

Update views.py

A url gerada não está localizando o arquivo do Texto Integral da Norma Jurídica, o que é consertado inserindo "/media/" na composição do link.
pull/3743/head
cristian-longhi 3 months ago
committed by GitHub
parent
commit
522bfd2a44
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      sapl/norma/views.py

2
sapl/norma/views.py

@ -166,7 +166,7 @@ class NormaPesquisaView(MultiFormatOutputMixin, FilterView):
texto_integral = obj.texto_integral if not isinstance( texto_integral = obj.texto_integral if not isinstance(
obj, dict) else obj["texto_integral"] obj, dict) else obj["texto_integral"]
return f'{url}/{texto_integral}' return f'{url}/media/{texto_integral}'
def get_queryset(self): def get_queryset(self):
qs = super().get_queryset() qs = super().get_queryset()

Loading…
Cancel
Save