Dynamic version in footer
Summary
Currently in the footer of Go we list the current version that is in use. We determine our version based on the current semantic version that is in use. Additionally, every release is tagged in git: run git tag
or head to https://git.gmu.edu/srct/go/tags to see what I mean. We need to find a way to automagically update the version in the footer with the latest git tag
. This could be done with javascript or potentially with django's templating where we use a view to render the footer or through another method..
Helpful Links
- https://git.gmu.edu/srct/go/tags
- templates/core/footer.html
- the navbar shows a good example of how django templating could be used