Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(698)

Unified Diff: MoinMoin/templates/blog/modify_main_meta.html

Issue 114850044: Added some more meta data information(specific to blog items such as ptime, supertags etc) to be di… (Closed)
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 %}

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b