diff --git a/README.md b/README.md
index 037ec6a..b67a33e 100644
--- a/README.md
+++ b/README.md
@@ -6,13 +6,15 @@
-
Why • Features • Usage • - How + How • + Caveats and Warnings • + Built with
**WYGIWYH** (_What You Get Is What You Have_) is a powerful, principles-first finance tracker designed for people who prefer a no-budget, straightforward approach to managing their money. With features like multi-currency support, customizable transactions, and a built-in dollar-cost averaging tracker, WYGIWYH helps you take control of your finances with simplicity and flexibility. @@ -210,35 +212,61 @@ A Recurring Transaction is a helper model that generates recurring transactions ### Account -TO-DO +Accounts represent different financial entities where transactions occur. They have the following attributes: + +- **Name**: A unique identifier for the account. +- **Group**: An optional [account group](#account-groups) the account belongs to for organizational purposes. +- **Currency**: The primary [currency](#currency) of the account. +- **Exchange Currency**: An optional currency used for exchange rate calculations. +- **Is Asset**: A boolean indicating if the account is considered an asset (counts towards net worth). +- **Is Archived**: A boolean indicating if the account is archived (doesn't show up in active lists or count towards net worth). ### Account Groups -TO-DO +Account Groups are used to organize accounts into logical categories. They consist of: + +- **Name**: A unique identifier for the group. ### Currency -TO-DO +Currencies represent different monetary units. They include: + +* **Code**: A unique identifier for the currency (e.g., USD, EUR). +* **Name**: The full name of the currency. +* **Decimal Place**: The number of decimal places used for the currency. +* **Prefix**: An optional symbol or text that comes before the amount. +* **Suffix**: An optional symbol or text that comes after the amount. ### Exchange Rate -TO-DO +Exchange Rates store conversion rates between currencies: + +* **From Currency**: The source currency. +* **To Currency**: The target currency. +* **Rate**: The conversion rate. +* **Date**: The date the rate was recorded or is valid for. ### Category -TO-DO +Categories are used to classify transactions: + +* **Name**: A unique identifier for the category. +* **Muted**: Muted categories won't count towards your monthly total. +* **Active**: A boolean indicating if the category is currently in use. This will disable its use on new transactions. ### Tag -TO-DO +Tags provide additional labeling for transactions: + +* **Name**: A unique identifier for the tag. +* **Active**: A boolean indicating if the category is currently in use. This will disable its use on new transactions. ### Entity -TO-DO +Entities represent parties involved in transactions: -### Rule - -TO-DO +* **Name**: A unique identifier for the entity. +* **Active**: A boolean indicating if the entity is currently in use. This will disable its use on new transactions. --- @@ -264,37 +292,98 @@ This can be useful for savings accounts or other interest accruing investments.! ### Monthly -TO-DO +The Monthly view provides an overview of your financial activity for a specific month. It includes: + +* Total income and expenses for the month +* Daily spending allowance calculation +* List of transactions for the month + +> [!NOTE] +> Reference dates are taken into account here. ### Yearly by currency -TO-DO +This view gives you a yearly summary of your finances grouped by currency. It shows: + +* Total income and expenses for each currency +* Monthly breakdown of income and expenses ### Yearly by account -TO-DO +Similar to the [yearly by currency](#yearly-by-currency) view, but groups the data by account instead. ### Calendar -TO-DO +The Calendar view presents your transactions in a monthly calendar format, allowing you to see your financial activity day by day. It includes: + +* Visual representation of daily transaction totals +* Ability to view details of transactions for each day + +> [!NOTE] +> Reference dates are **not** taken into account here. ### Networh #### Current -TO-DO +The Current Net Worth view shows your present financial standing, including: + +* Total value of all asset accounts +* Breakdown of assets by account and currency +* Historical net worth trend #### Projected -TO-DO +The Projected Net Worth view estimates your future financial position based on current data and recurring transactions. It includes: + +* Your total net worth with projected and current transactions +* Breakdown of assets by account and currency +* Historical and future net worth trend ### All Transactions -TO-DO +This view provides a comprehensive list of all transactions across all accounts. Features include: + +* Advanced filtering and sorting options +* Detailed information + +You can use this to see how much you spent on a given category, or a given day, etc.. ### Configuration and Management -TO-DO +#### Management +The Management section in the navbar allows you to add and edit most elements of WYGIWYH, including: + +* Accounts and Groups +* Currencies and Exchange Rates +* Categories, Tags and Entities +* Rules + +#### User Settings + +WYGIWYH allows users to personalize their experience through customizable settings. Each user can configure: + +* **Language**: Choose your preferred interface language. +* **Timezone**: Set your local timezone for accurate date and time display. +* **Start Page**: Select which page you want to see first when you log in. +* **Sound Preferences**: Toggle sound effects on or off. +* **Amount Display**: Choose to show or hide monetary amounts by default. + +To access and modify these settings: + +1. Click on your username in the top-right corner of the page. +2. Select "Settings" from the dropdown menu. +3. Adjust your preferences as desired. +4. Click "Save" to apply your changes. + +These settings ensure that WYGIWYH adapts to your personal preferences and working style. + +#### Django Admin +From here you can also access Django's own admin site. + +> [!WARNING] +> Most side effects aren't triggered from the admin. +> Only use it if you know what you're doing or were told by a developer to do so. --- @@ -302,7 +391,7 @@ TO-DO ### Calculator -The calculator is a floating widget that can be toggled by clicking the calculator icon on the navbar. +The calculator is a floating widget that can be toggled by clicking the calculator icon on the navbar or by pressing Alt + C on any page. It allows for any math expression supported by [math.js](https://mathjs.org). @@ -336,16 +425,109 @@ You can add additional items by clicking the _Add_ button at the end of the page ### Currency Converter -TO-DO +The Currency Converter is a tool that allows you to quickly convert amounts between different currencies. + +> [!NOTE] +> There's no external Exchange Rate fetching. This uses the Exchange Rates configured in the [Management](#configuration-and-management) page for [Exchange Rates](#exchange-rate) + +## Automation + +### API + +WYGIWYH has a comprehensive API, it's documentation can be accessed on `