Document illustration badges

This commit is contained in:
blankie 2023-05-06 00:05:30 +07:00
parent 727f5dd32b
commit 81c61965c4
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
2 changed files with 13 additions and 0 deletions

View File

@ -15,3 +15,10 @@ This list is not exhaustive, nor does it mean that these are being worked on.
- No search
- No ability to login
- No ability to see comments or like counts
# Miscellaneous Information
In a page containing a list of illustrations (e.g. a user's illustrations page
or a search results page), illustrations containing multiple images will have a
badge indicating the amount of images inside. Illustrations that are marked as
being AI-generated will have a badge with a red background.

View File

@ -39,6 +39,12 @@ void home_route(const httplib::Request& req, httplib::Response& res, const Confi
Element("li", {"Can only search for newest and oldest illustrations"}),
Element("li", {"No ability to login"}),
Element("li", {"No ability to see comments or like counts"}),
}),
Element("h2", {"Miscellaneous Information"}),
Element("p", {
"In a page containing a list of illustrations (e.g. a user's illustrations page or a search results page), "
"illustrations containing multiple images will have a badge indicating the amount of images inside. "
"Illustrations that are marked as being AI-generated will have a badge with a red background."
})
});
serve(req, res, config, "Pixwhile", std::move(body));