diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-13 14:23:02 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-13 14:23:06 -0700 |
commit | 955d4942d5111cbbd8f4b99d4e3c6d79262dab6e (patch) | |
tree | 87757a7afdf00ab6de5ed7455267654bf49b5239 /python/fatcat_web/templates/release_edit.html | |
parent | 287e892abb4adac8ea7f7211524a41c7cd06851c (diff) | |
download | fatcat-955d4942d5111cbbd8f4b99d4e3c6d79262dab6e.tar.gz fatcat-955d4942d5111cbbd8f4b99d4e3c6d79262dab6e.zip |
partial python impl of ext_id and release_stage refactors
Diffstat (limited to 'python/fatcat_web/templates/release_edit.html')
-rw-r--r-- | python/fatcat_web/templates/release_edit.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/release_edit.html b/python/fatcat_web/templates/release_edit.html index 7bd4a00a..b3beec2b 100644 --- a/python/fatcat_web/templates/release_edit.html +++ b/python/fatcat_web/templates/release_edit.html @@ -20,7 +20,7 @@ <div class="twelve wide column" style="padding-bottom: 0px;"> <div class="ui equal width fields"> {{ edit_macros.form_field_basic(form.release_type, "required") }} - {{ edit_macros.form_field_basic(form.release_status) }} + {{ edit_macros.form_field_basic(form.release_stage) }} </div> </div> <div class="one wide column" style="padding-bottom: 0px;"></div> @@ -133,7 +133,7 @@ $(document).ready(function() { // these javascript dropdowns hide the original <input>, which breaks browser // form focusing (eg, for required fields) :( //$('#release_type').dropdown(); - //$('#release_status').dropdown(); + //$('#release_stage').dropdown(); $('.ui.accordion').accordion(); var fixup_contrib_numbering = function(group_item) { |