Ignore:
Timestamp:
Jan 5, 2010, 4:53:12 AM (17 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, client
Children:
7874f6a
Parents:
719e4bb
git-author:
Alex Dehnert <adehnert@…> (01/05/10 04:53:12)
git-committer:
Alex Dehnert <adehnert@…> (01/05/10 04:53:12)
Message:

Bunch of work on the accounting system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • treasury/vouchers/views.py

    r719e4bb r13a23ce  
    1 # Create your views here.
     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 TracChangeset for help on using the changeset viewer.