mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
616 B
19 lines
616 B
"""
|
|
View pública para acesso ao acervo histórico via GED (sistema legado).
|
|
Issue #1326 / Task #1348 – Adicionar tela do GED dentro do Legislativo.
|
|
"""
|
|
from django.shortcuts import render
|
|
from django.views.decorators.cache import cache_control
|
|
|
|
GED_URL = "https://franco-ged.up.railway.app/"
|
|
|
|
|
|
@cache_control(public=True, max_age=300)
|
|
def ged_historico(request):
|
|
"""
|
|
Exibe o sistema GED (acervo histórico – matérias anteriores a 2026)
|
|
incorporado em iframe. Acesso público, sem autenticação.
|
|
"""
|
|
return render(request, 'materia/ged_historico.html', {
|
|
'ged_url': GED_URL,
|
|
})
|
|
|