This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-10 18:23:29 +02:00
|
|
|
<!-- SVG to show the current stock with a traffic light food labeling system -->
|
2017-05-03 06:52:14 +02:00
|
|
|
<!-- Used functions -->
|
2017-06-21 15:25:18 +02:00
|
|
|
<!-- process_radius ANZAHL MAXANZAHL RADIUS -->
|
|
|
|
<!-- procent ANZAHL MAXANZAHL ex. {procent .Count 10}%-->
|
2017-04-04 23:21:05 +02:00
|
|
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
|
|
<g class="arcs">
|
2017-05-12 11:50:51 +02:00
|
|
|
{{if eq .Count 0}}
|
|
|
|
<circle cx="50" cy="50" r="40" fill="#fff" stroke="#b02" stroke-width="8"/>
|
2017-04-28 09:03:09 +02:00
|
|
|
{{else}}
|
2017-05-12 11:50:51 +02:00
|
|
|
<circle cx="50" cy="50" r="40" fill="#fff" stroke="#b02" stroke-width="8"/>
|
|
|
|
<circle cx="50" cy="50" r="40" fill="none" stroke="#093" stroke-width="8" stroke-dasharray="251.33" stroke-dashoffset="{{process_radius .Count 10 40}}"/>
|
2017-04-28 09:03:09 +02:00
|
|
|
{{end}}
|
2017-04-04 23:21:05 +02:00
|
|
|
</g>
|
2017-04-07 11:32:49 +02:00
|
|
|
<text x="50" y="65" fill="#555" text-anchor="middle" style="font: 50px Roboto,Verdana,sans-serif;">{{.Count}}</text>
|
2017-04-04 23:21:05 +02:00
|
|
|
</svg>
|