mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Merge pull request #442 from eikek/fix-tables
Fix table layout and notification form
This commit is contained in:
commit
8173a26985
@ -46,9 +46,11 @@ view : Model -> Html Msg
|
|||||||
view model =
|
view model =
|
||||||
table [ class "ui selectable pointer table" ]
|
table [ class "ui selectable pointer table" ]
|
||||||
[ thead []
|
[ thead []
|
||||||
[ th [ class "collapsible" ] [ text "Name" ]
|
[ tr []
|
||||||
, th [] [ text "Host/Port" ]
|
[ th [ class "collapsible" ] [ text "Name" ]
|
||||||
, th [] [ text "From" ]
|
, th [] [ text "Host/Port" ]
|
||||||
|
, th [] [ text "From" ]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
, tbody []
|
, tbody []
|
||||||
(List.map (renderLine model) model.emailSettings)
|
(List.map (renderLine model) model.emailSettings)
|
||||||
|
@ -45,12 +45,14 @@ view _ items =
|
|||||||
div []
|
div []
|
||||||
[ table [ class "ui very basic center aligned table" ]
|
[ table [ class "ui very basic center aligned table" ]
|
||||||
[ thead []
|
[ thead []
|
||||||
[ th [ class "collapsing" ] []
|
[ tr []
|
||||||
, th [] [ text "Name" ]
|
[ th [ class "collapsing" ] []
|
||||||
, th [] [ text "Owner" ]
|
, th [] [ text "Name" ]
|
||||||
, th [] [ text "Owner or Member" ]
|
, th [] [ text "Owner" ]
|
||||||
, th [] [ text "#Member" ]
|
, th [] [ text "Owner or Member" ]
|
||||||
, th [] [ text "Created" ]
|
, th [] [ text "#Member" ]
|
||||||
|
, th [] [ text "Created" ]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
, tbody []
|
, tbody []
|
||||||
(List.map viewItem items)
|
(List.map viewItem items)
|
||||||
|
@ -46,8 +46,10 @@ view : Model -> Html Msg
|
|||||||
view model =
|
view model =
|
||||||
table [ class "ui selectable pointer table" ]
|
table [ class "ui selectable pointer table" ]
|
||||||
[ thead []
|
[ thead []
|
||||||
[ th [ class "collapsible" ] [ text "Name" ]
|
[ tr []
|
||||||
, th [] [ text "Host/Port" ]
|
[ th [ class "collapsible" ] [ text "Name" ]
|
||||||
|
, th [] [ text "Host/Port" ]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
, tbody []
|
, tbody []
|
||||||
(List.map (renderLine model) model.emailSettings)
|
(List.map (renderLine model) model.emailSettings)
|
||||||
|
@ -131,7 +131,7 @@ init : Flags -> ( Model, Cmd Msg )
|
|||||||
init flags =
|
init flags =
|
||||||
let
|
let
|
||||||
initialSchedule =
|
initialSchedule =
|
||||||
Data.Validated.Unknown Data.CalEvent.everyMonth
|
Data.Validated.Valid Data.CalEvent.everyMonth
|
||||||
|
|
||||||
sm =
|
sm =
|
||||||
Comp.CalEventInput.initDefault
|
Comp.CalEventInput.initDefault
|
||||||
|
@ -44,14 +44,16 @@ view _ items =
|
|||||||
div []
|
div []
|
||||||
[ table [ class "ui very basic center aligned table" ]
|
[ table [ class "ui very basic center aligned table" ]
|
||||||
[ thead []
|
[ thead []
|
||||||
[ th [ class "collapsing" ] []
|
[ tr []
|
||||||
, th [ class "collapsing" ]
|
[ th [ class "collapsing" ] []
|
||||||
[ i [ class "check icon" ] []
|
, th [ class "collapsing" ]
|
||||||
|
[ i [ class "check icon" ] []
|
||||||
|
]
|
||||||
|
, th [] [ text "Schedule" ]
|
||||||
|
, th [] [ text "Connection" ]
|
||||||
|
, th [] [ text "Recipients" ]
|
||||||
|
, th [] [ text "Remind Days" ]
|
||||||
]
|
]
|
||||||
, th [] [ text "Schedule" ]
|
|
||||||
, th [] [ text "Connection" ]
|
|
||||||
, th [] [ text "Recipients" ]
|
|
||||||
, th [] [ text "Remind Days" ]
|
|
||||||
]
|
]
|
||||||
, tbody []
|
, tbody []
|
||||||
(List.map viewItem items)
|
(List.map viewItem items)
|
||||||
|
@ -44,16 +44,18 @@ view _ items =
|
|||||||
div []
|
div []
|
||||||
[ table [ class "ui very basic center aligned table" ]
|
[ table [ class "ui very basic center aligned table" ]
|
||||||
[ thead []
|
[ thead []
|
||||||
[ th [ class "collapsing" ] []
|
[ tr []
|
||||||
, th [ class "collapsing" ]
|
[ th [ class "collapsing" ] []
|
||||||
[ i [ class "check icon" ] []
|
, th [ class "collapsing" ]
|
||||||
|
[ i [ class "check icon" ] []
|
||||||
|
]
|
||||||
|
, th [] [ text "Schedule" ]
|
||||||
|
, th [] [ text "Connection" ]
|
||||||
|
, th [] [ text "Folders" ]
|
||||||
|
, th [] [ text "Received Since" ]
|
||||||
|
, th [] [ text "Target" ]
|
||||||
|
, th [] [ text "Delete" ]
|
||||||
]
|
]
|
||||||
, th [] [ text "Schedule" ]
|
|
||||||
, th [] [ text "Connection" ]
|
|
||||||
, th [] [ text "Folders" ]
|
|
||||||
, th [] [ text "Received Since" ]
|
|
||||||
, th [] [ text "Target" ]
|
|
||||||
, th [] [ text "Delete" ]
|
|
||||||
]
|
]
|
||||||
, tbody []
|
, tbody []
|
||||||
(List.map viewItem items)
|
(List.map viewItem items)
|
||||||
|
@ -103,10 +103,12 @@ view model =
|
|||||||
Nothing ->
|
Nothing ->
|
||||||
table [ class "ui selectable pointer very basic table" ]
|
table [ class "ui selectable pointer very basic table" ]
|
||||||
[ thead []
|
[ thead []
|
||||||
[ th [ class "collapsing" ] [ text "Recipients" ]
|
[ tr []
|
||||||
, th [] [ text "Subject" ]
|
[ th [ class "collapsing" ] [ text "Recipients" ]
|
||||||
, th [ class "collapsible" ] [ text "Sent" ]
|
, th [] [ text "Subject" ]
|
||||||
, th [ class "collapsible" ] [ text "Sender" ]
|
, th [ class "collapsible" ] [ text "Sent" ]
|
||||||
|
, th [ class "collapsible" ] [ text "Sender" ]
|
||||||
|
]
|
||||||
]
|
]
|
||||||
, tbody [] <|
|
, tbody [] <|
|
||||||
List.map
|
List.map
|
||||||
|
Loading…
x
Reference in New Issue
Block a user