diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-06-21 11:04:31 -0400 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-06-21 11:04:31 -0400 |
commit | 20091904b7bf4b2074b45e25c7eee0e56d19348b (patch) | |
tree | 5c31004eff65466c84ed88cde77cbc712ba04ea6 /captain/templates | |
parent | cd9283417a4b70335edf7ce0c5d15bfca111b807 (diff) | |
download | levitating-20091904b7bf4b2074b45e25c7eee0e56d19348b.tar.gz levitating-20091904b7bf4b2074b45e25c7eee0e56d19348b.zip |
Groups of instructions are now supported, allowing launching multiple jobs at once
Diffstat (limited to 'captain/templates')
-rw-r--r-- | captain/templates/home.html | 1 | ||||
-rw-r--r-- | captain/templates/index.html | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/captain/templates/home.html b/captain/templates/home.html index a804d62..330fb0e 100644 --- a/captain/templates/home.html +++ b/captain/templates/home.html @@ -9,5 +9,6 @@ <li><a href="jobs.html">Jobs</a> - View pending and completed jobs along with results</li> <li><a href="players.html">Players</a> - Manage players, including adding new players to the team</li> <li><a href="instructions.html">Instructions</a> - Launch certain instruction sets or assign instructions to players</li> + <li><a href="groups.html">Groups</a> - Manage or launch a group of instructions, all at once</li> <li><a href="about.html">About</a> - Learn more about this service</li> </ul> diff --git a/captain/templates/index.html b/captain/templates/index.html index ae87e72..5d90ad4 100644 --- a/captain/templates/index.html +++ b/captain/templates/index.html @@ -16,6 +16,7 @@ <li><a href="{{ base_url }}/jobs.html">Jobs</a></li> <li><a href="{{ base_url }}/players.html">Players</a></li> <li><a href="{{ base_url }}/instructions.html">Instructions</a></li> + <li><a href="{{ base_url }}/groups.html">Groups</a></li> <li><a href="{{ base_url }}/about.html">About</a></li> </ul> </div> |