source: remit/finance_core/views.py @ 92ca60e

client
Last change on this file since 92ca60e was 92ca60e, checked in by Alex Dehnert <adehnert@…>, 15 years ago

Rename treasury to remit

  • Property mode set to 100644
File size: 197 bytes
Line 
1from django.http import HttpResponse
2import vouchers.models
3
4def display_tree(request):
5    root = vouchers.models.BudgetArea.get_by_path(['Accounts'])
6    return HttpResponse(root.dump_to_html())
Note: See TracBrowser for help on using the repository browser.