Compare commits

..

No commits in common. "d0605660f7a7a48cb2a83092696103432a147cdd" and "d62c5a4078a76e21d4766cd3043031e72e361678" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ CREATE TABLE articles (
CREATE TABLE tags (
id INT AUTO_INCREMENT,
name VARCHAR(50) NOT NULL UNIQUE,
name VARCHAR(15) NOT NULL UNIQUE,
PRIMARY KEY(id)
);

View File

@ -16,7 +16,7 @@
<div>
<span>Tags</span>
<div class="flex flex-wrap gap-4">
<div class="flex gap-4">
{{range .}}
<div>
<input id="{{.Name}}" name="tags" type="checkbox" value="{{.ID}}" />