CRITICAL: error in template prevents login #146
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
giving 5xx after login. please write a failing test first, commit that, then fix it.
Fixed in PR #147. The root cause:
templates/dashboard.htmlline 72 uses.CSRFFieldinside{{range .AppStats}}, where.refers to*handlers.AppStats(which has no CSRFField). Changed to$.CSRFFieldto reference the root template data map. Added a regression test that creates an app before rendering the dashboard.