Go to file
jordi fita mas b4919db6c4 Add seasons’ relation, functions, and admin section
Seasons have a color to show on the calendar. I need them in HTML format
(e.g., #123abc) in order to set as value to `<input type="color">`, but
i did not want to save them as text in the database, as integers are
better representations of colors—in fact, that’s what the HTML syntax
also is: an integer.

I think the best would be to create an extension that adds an HTML color
type, with functions to convert from many representations (e.g., CSS’
rgb or even color names) to integer and back.  However, that’s a lot of
work and i can satisfy Camper’s needs with just a couple of functions
and a domain.

To show the color on the index, at first tried to use a read-only
`<input type="color">`, but seems that this type of input can not be
read-only and must be disabled instead.  However, i do not know whether
it makes sense to have a disabled input outside a form “just” to show
a color; i suspect it does not.  Thus, at the end i use SVG with a
single circle, which is better that a 50%-rounded div with a background
color, even if the result is the same—SVG **is** intended for showing
pictures, which is this case.
2023-08-16 20:15:57 +02:00
cmd/camper Allow users to update their profile images 2023-07-28 20:15:09 +02:00
debian Add correct dependencies for camper-sqitch 2023-07-31 16:20:13 +02:00
deploy Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
pkg Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
po Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
revert Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
test Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
verify Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
web Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
.gitignore Add the skeleton of the web application 2023-07-23 00:11:00 +02:00
Makefile Add Debian package 2023-07-27 20:00:08 +02:00
demo.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
go.mod Add the skeleton of the web application 2023-07-23 00:11:00 +02:00
go.sum Add the skeleton of the web application 2023-07-23 00:11:00 +02:00
sqitch.conf Add empty Sqitch configuration anq plan files 2023-07-20 23:43:23 +02:00
sqitch.plan Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00