mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 10:58:26 +00:00
Initial version.
Features: - Upload PDF files let them analyze - Manage meta data and items - See processing in webapp
This commit is contained in:
10
modules/webapp/src/main/elm/Util/Address.elm
Normal file
10
modules/webapp/src/main/elm/Util/Address.elm
Normal file
@ -0,0 +1,10 @@
|
||||
module Util.Address exposing (..)
|
||||
|
||||
import Api.Model.Address exposing (Address)
|
||||
|
||||
toString: Address -> String
|
||||
toString a =
|
||||
[ a.street, a.zip, a.city, a.country ]
|
||||
|> List.filter (String.isEmpty >> not)
|
||||
|> List.intersperse ", "
|
||||
|> String.concat
|
Reference in New Issue
Block a user