Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
-- Verify camper:available_icons on pg
|
|
|
|
|
|
|
|
begin;
|
|
|
|
|
|
|
|
set search_path to camper;
|
|
|
|
|
2023-10-13 18:30:31 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'area';
|
Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'baby';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'ball';
|
2024-01-24 10:21:08 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'barbecue';
|
Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'bicycle';
|
2024-01-24 18:32:01 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'cabin';
|
Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'campfire';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'castle';
|
2023-10-13 18:30:31 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'ecofriendly';
|
2023-12-21 16:40:06 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'electricity';
|
2024-01-24 18:32:01 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'flask_gear';
|
Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'fridge';
|
2024-01-24 18:32:01 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'grate_droplet';
|
2023-10-13 18:30:31 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'hvac';
|
Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'information';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'kayak';
|
2023-10-13 18:30:31 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'nopet';
|
Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'outing';
|
2023-10-13 18:30:31 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'person';
|
2024-01-24 00:01:22 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'pet';
|
2023-12-21 16:40:06 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'plot';
|
Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'pool';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'puzzle';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'restaurant';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'route';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'rv';
|
2024-01-24 11:11:58 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'sailboat';
|
2024-01-24 18:32:01 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'shirt';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'shop';
|
Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'shower';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'store';
|
2024-01-24 18:32:01 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'tent';
|
Add the services page
This page is more or less similar to home, in terms of database: it
has a carousel and a list of items; in this case, the definition of
campsite services.
As i said early, when adding the home carousel, this carousel has its
own relation and set of functions to manage slides. They are also
duplicated in Go code, but i think i will need to refactor it later to
a carousel package or something like that, because both relations have
the exact same fields and types, so it makes no sense to have twice the
same code.
I already did it with the CSS and JavaScript code, mostly because it was
easier to replace the `.surroundings div` selector with `.carousel`, and
because that way i can have a single template that loads and initializes
Slick.
There is no UI to create or edit service definitions, although there are
the SQL functions, because i have no more time now, and Oriol needs to
check that the style is correct for that page.
2023-09-17 01:42:16 +00:00
|
|
|
select 1 / count(*) from icon where icon_name = 'toilet';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'washer';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'wheelchair';
|
|
|
|
select 1 / count(*) from icon where icon_name = 'wifi';
|
|
|
|
|
|
|
|
rollback;
|