def norma_upload_path(instance, filename): return texto_upload_path(instance, filename, subpath=instance.ano)
def anexo_upload_path(instance, filename): return texto_upload_path(instance, filename, subpath=instance.materia.ano)
def foto_upload_path(instance, filename): return texto_upload_path(instance, filename, subpath='')
def anexo_upload_path(instance, filename): return texto_upload_path(instance, filename, subpath='anexo', pk_first=True)
def pauta_upload_path(instance, filename): return texto_upload_path(instance, filename, subpath='pauta', pk_first=True)
def ata_upload_path(instance, filename): return texto_upload_path(instance, filename, subpath='ata')
def anexo_upload_path(instance, filename): return texto_upload_path(instance, filename, subpath='anexo')