diff options
| author | Marius Peter <dev@marius-peter.com> | 2025-12-13 22:27:11 +0100 |
|---|---|---|
| committer | Marius Peter <dev@marius-peter.com> | 2025-12-13 22:27:11 +0100 |
| commit | a21dbe04c68adf6a89b8eb1b6e75e87a0cdf62f1 (patch) | |
| tree | d7f9b77f5298c2d09cfa0519a6e8941a494d8169 | |
| parent | d126203ad9a178392918cf1512a779f9b37caaf7 (diff) | |
Use more accurate button names.
| -rw-r--r-- | views.rkt | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -121,18 +121,18 @@ `(tr (td ((class "font-monospace")) ,(normal-date (nutrient-measurement-date m))) (td (a ((class "btn btn-outline-secondary btn-sm") (href ,(format "/ferti/measurements/~a" (nutrient-measurement-id m)))) - "Modifier")) + "Voir")) (td ,(if maybe-rotation `(a ((class "btn btn-outline-secondary btn-sm") (href ,(format "/ferti/rotations/~a" (crop-rotation-id maybe-rotation)))) - "Modifier") + "Voir") `(a ((class "btn btn-outline-primary btn-sm") (href ,(format "/ferti/rotations/new/~a" (nutrient-measurement-date m)))) "Ajouter"))) (td ,(if maybe-rotation `(a ((class "btn btn-outline-secondary btn-sm") (href ,(format "/ferti/recipes/~a" (crop-rotation-date maybe-rotation)))) - "Consulter") + "Voir") "—"))))))) (ferti-template `((h2 () "Relevés et Assolements") (div ((class "btn-group mb-3")) |