diff --git a/darkstat/front/shared.templ b/darkstat/front/shared.templ index 918c95be..9e490c9f 100644 --- a/darkstat/front/shared.templ +++ b/darkstat/front/shared.templ @@ -137,6 +137,7 @@ templ TabMenu(url utils_types.FilePath) { + }
Thruster | +Price | +Buyable | +Max Force | +Power Usage | +Efficiency | +Value | +Rating | +Hit Pts | +Lootable | +Nickname | +Name ID | +Info ID | ++ |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{ thruster.Name } | +{ strconv.Itoa(thruster.Price) } | +{ strconv.FormatBool(len(thruster.Bases) > 0) } | +{ strconv.Itoa(thruster.MaxForce) } | +{ strconv.Itoa(thruster.PowerUsage) } | +{ fmt.Sprintf("%.2f",thruster.Efficiency) } | +{ fmt.Sprintf("%.2f", thruster.Value) } | +{ fmt.Sprintf("%.2f", thruster.Rating) } | +{ strconv.Itoa(thruster.HitPts) } | +{ strconv.FormatBool(thruster.Lootable) } | +{ thruster.Nickname } | +{ strconv.Itoa(thruster.NameID) } | +{ strconv.Itoa(thruster.InfoID) } | ++ @templ.Raw(JoinClickTriggers("bottominfo_click"+thruster.Nickname, "infocard_click"+thruster.Nickname)) + |