mirror of
https://github.com/4rkal/shortr.git
synced 2025-01-19 15:03:38 +02:00
29 lines
466 B
Plaintext
29 lines
466 B
Plaintext
package views
|
|
|
|
import (
|
|
"github.com/4rkal/shortr/models"
|
|
"fmt"
|
|
|
|
)
|
|
|
|
templ StatsForm(){
|
|
@Base(){
|
|
<form action="/stats" method="get">
|
|
<label for="name">Website ID:</label>
|
|
<input type="text" id="id" name="id" required>
|
|
<br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
}
|
|
}
|
|
|
|
templ Stats(link *models.Link){
|
|
@Base(){
|
|
<h1>Statistics for {link.Id}</h1>
|
|
<h2>{link.Url}</h2>
|
|
|
|
<h2>Visitors {fmt.Sprintf("%v",link.Clicks)}</h2>
|
|
|
|
}
|
|
}
|