diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-06-12 19:36:10 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-06-12 19:38:00 -0700 |
commit | ef7fafdcb664f9c419069b41d743f69382571f98 (patch) | |
tree | 37e0f8ab5e59c5c91a05036a49c40630565aaee0 /python/fatcat_web/templates/edit_macros.html | |
parent | 13f2faaeb3f01478eba32ba22972a2a8ec07df51 (diff) | |
download | fatcat-ef7fafdcb664f9c419069b41d743f69382571f98.tar.gz fatcat-ef7fafdcb664f9c419069b41d743f69382571f98.zip |
continue large refactors of entity views
- container views generic
- editgroup edit deletion and re-editing
- /editgroup/entity/ident views
Diffstat (limited to 'python/fatcat_web/templates/edit_macros.html')
-rw-r--r-- | python/fatcat_web/templates/edit_macros.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/fatcat_web/templates/edit_macros.html b/python/fatcat_web/templates/edit_macros.html index 9bd14596..66da04e7 100644 --- a/python/fatcat_web/templates/edit_macros.html +++ b/python/fatcat_web/templates/edit_macros.html @@ -35,13 +35,13 @@ </div> {%- endmacro %} -{% macro editgroup_dropdown(form) -%} +{% macro editgroup_dropdown(form, editgroup=None) -%} <div class="ui accordion"> - <div class="{% if not editgroup_id %}active{% endif %} title"> + <div class="{% if not editgroup %}active{% endif %} title"> <h3><i class="dropdown icon"></i>Editgroup Meta</h3> </div> - <div class="{% if not editgroup_id %}active{% endif %} content"> - {% if editgroup_id %} + <div class="{% if not editgroup %}active{% endif %} content"> + {% if editgroup %} <p>You have an editgroup in progress, and this edit will be included by default. You can override this below. {% else %} |