source: treasury/vouchers/views.py @ 6027277

client
Last change on this file since 6027277 was 13a23ce, checked in by Alex Dehnert <adehnert@…>, 16 years ago

Bunch of work on the accounting system

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