From 9d510d05a2ca95c3dfaf8920641cea90df90773c Mon Sep 17 00:00:00 2001 From: rangelbruno Date: Sun, 1 Feb 2026 21:16:59 -0300 Subject: [PATCH] =?UTF-8?q?Fix(Proposi=C3=A7=C3=A3o):=20Corrige=20template?= =?UTF-8?q?=20de=20recibo=20que=20causava=20Internal=20Server=20Error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Template não estendia base.html, causando erro ao renderizar página de recibo. Signed-off-by: rangelbruno --- sapl/templates/materia/recibo_proposicao.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sapl/templates/materia/recibo_proposicao.html b/sapl/templates/materia/recibo_proposicao.html index 5ae671c35..447b4c618 100644 --- a/sapl/templates/materia/recibo_proposicao.html +++ b/sapl/templates/materia/recibo_proposicao.html @@ -1,10 +1,11 @@ +{% extends "base.html" %} {% load i18n %} {% load tz %} {% load crispy_forms_tags %} {% load common_tags %} {% load webpack_static from webpack_loader %} -{% block detail_content %} +{% block base_content %}