Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- args["turmas"] = [{
- "nome":t.nome,
- "disciplinas":[{
- "nome":d.disciplina,
- "professor":nome(d.professor),
- "paracasas":[{
- "data_publicacao":unicode(pc.data_postagem),
- "data_entrega":unicode(pc.data_entrega),
- "tarefas":pc.tarefas,
- "resumo":pc.tarefas if len(pc.tarefas) <= 50 else u'{0}...'.format(pc.tarefas[0:50]),
- "anexos":[{
- "url":a.anexo.url,
- "nome":a.anexo.name.split('/')[-1],
- "extensao":a.anexo.name.split('.')[-1],
- } for a in pc.anexoparacasa_set.all()]
- } for pc in d.paracasa_set.all()],
- } for d in t.professorturma_set.all()]
- } for t in turmas]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement