{% extends "layout.html" %} {% block page_title %} Forms {% endblock %} {% block css %} {% endblock css %} {% block js %} {% endblock js %} {% block content %} {% if form_doc is none %}

No form definitions found

We cannot find the BeanHub Forms doc file in your current folder, {{ settings.BEANCOUNT_DIR }}.

To work with BeanHub Forms, you need to create the doc file at .beanhub/forms.yaml in your Beancount folder, then run beanhub-cli form server command in it like this:

cd /path/to/your/beancount/folder
bh form server

For example, you can create the BeanHub Forms doc file at {{ settings.BEANCOUNT_DIR / ".beanhub" / "forms.yaml" }} with the following sample form as content:

{{ sample_form_doc }}

Or, you can use the button below to create the file automatically and reload this page to try it out:

For more information about BeanHub Forms and how to use it, please read our blog post Automating Beancount data input with custom forms makes your life 10 times easier!

{% else %}

Forms

{% endif %} {% endblock content %}