For now, you can do three things in the web ui: add a transaction, view journal entries, view an account register. Filtering is not quite right yet.
		
			
				
	
	
		
			9 lines
		
	
	
		
			167 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			167 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
| -- | Site root and misc. handlers.
 | |
| 
 | |
| module Handler.RootR where
 | |
| 
 | |
| import Import
 | |
| 
 | |
| getRootR :: Handler Html
 | |
| getRootR = redirect defaultroute where defaultroute = JournalR
 |