diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-22 11:08:37 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-22 11:08:45 -0700 |
commit | 02c18b7178385ddb5db005389873bc888e58e108 (patch) | |
tree | c12387a3642d93e266a6a7297f4687b84c18da86 /python | |
parent | 7a25d96ea3b57170d1c13b2633eed99b536ee78d (diff) | |
download | fatcat-02c18b7178385ddb5db005389873bc888e58e108.tar.gz fatcat-02c18b7178385ddb5db005389873bc888e58e108.zip |
swap release/work editgroup order
For easier edit review
Diffstat (limited to 'python')
-rw-r--r-- | python/fatcat_web/templates/editgroup_view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/editgroup_view.html b/python/fatcat_web/templates/editgroup_view.html index 9d152579..8b454bb2 100644 --- a/python/fatcat_web/templates/editgroup_view.html +++ b/python/fatcat_web/templates/editgroup_view.html @@ -99,8 +99,8 @@ reviewable bundle. <br><br clear="all"> <div class="ui styled fluid accordion"> - {{ edit_list(editgroup.edits.works, "work", "Work") }} {{ edit_list(editgroup.edits.releases, "release", "Release") }} + {{ edit_list(editgroup.edits.works, "work", "Work") }} {{ edit_list(editgroup.edits.containers, "container", "Container") }} {{ edit_list(editgroup.edits.creators, "creator", "Creator") }} {{ edit_list(editgroup.edits.files, "file", "File") }} |