Show current metadata in document upload view

This commit is contained in:
Roberto Rosario
2011-03-09 15:27:08 -04:00
parent 1148cae5e5
commit fa073237b2
5 changed files with 109 additions and 13 deletions

View File

@@ -0,0 +1,19 @@
{% if side_bar %}
<div class="block">
<h3>{{ title }}</h3>
<div class="content">
{% else %}
<div class="content">
<h2 class="title">{{ title }}</h2>
<div class="inner">
{% endif %}
{% if content %}
<p>{{ content }}</p>
{% endif %}
{% for paragraph in paragraphs %}
<p>{{ paragraph }}</p>
{% endfor %}
</div></div>