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.
13 lines
362 B
13 lines
362 B
def parliament_info(request):
|
|
|
|
return {
|
|
'state': 'Estado',
|
|
'state_abbr': 'UF',
|
|
'city': 'Cidade',
|
|
'parliament_type': 'Câmara Municipal',
|
|
'address': 'Rua Lorem Ipsum de Amet, Casa X',
|
|
'postal_code': '70000-000',
|
|
'phone_number': '00 0000-0000',
|
|
'url_portal': '#',
|
|
'url_email': '#',
|
|
}
|
|
|