Index: MoinMoin/templates/blog/modify_main_meta.html |
=================================================================== |
--- a/MoinMoin/templates/blog/modify_main_meta.html |
+++ b/MoinMoin/templates/blog/modify_main_meta.html |
@@ -16,3 +16,19 @@ |
{% endfor %} |
</dl> |
{% endmacro %} |
+ |
+{% macro basic_meta_editor(form) %} |
dimazest
2014/07/16 12:52:52
same here.... the whole thing is duplicated (which
|
+ {% for e in [ |
+ 'itemtype', |
+ 'contenttype', |
+ 'summary', |
+ 'tags', |
+ 'name', |
+ 'supertags', |
+ ] %} |
+ <div class="form-group"> |
+ {{ gen.label(form[e]) }} |
+ {{ gen.textarea(form[e], rows='1', class='form-control') }} |
+ </div> |
+ {% endfor %} |
+{% endmacro %} |