Skip to content

Commit

Permalink
Move Compatibility & Files below History (bug 647114)
Browse files Browse the repository at this point in the history
  • Loading branch information
gkoberger committed Apr 1, 2011
1 parent 7c4326f commit 27938f9
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions apps/editors/templates/editors/review.html
Expand Up @@ -43,6 +43,30 @@ <h3 id="approval-notes">
<p>{{ version.approvalnotes|nl2br }}</p>
{% endif %}

<h3 id="file-history">{{ _('Item History') }}</h3>
{% if history %}
<table id="review-files">
<thead>
<tr>
<th>{{ _('Version/File') }}</th>
<th>{{ _('Date') }}</th>
<th>{{ _('Reviewer') }}</th>
<th>{{ _('Action') }}</th>
<th>{{ _('Comments') }}</th>
</tr>
</thead>
<tbody>
{% for record in history %}
{% include 'editors/includes/history.html' %}
{% endfor %}
</tbody>
</table>
{% else %}
<p>
{{ _('No previous review entries could be found.') }}
</p>
{% endif %}

<h3 id="compatibility">{{ _('Compatibility') }}</h3>
<ul>
{% for compat in addon.compatible_apps.values() %}
Expand Down Expand Up @@ -79,30 +103,6 @@ <h3 id="validation">
{% endfor %}
</ul>

<h3 id="file-history">{{ _('Item History') }}</h3>
{% if history %}
<table id="review-files">
<thead>
<tr>
<th>{{ _('Version/File') }}</th>
<th>{{ _('Date') }}</th>
<th>{{ _('Reviewer') }}</th>
<th>{{ _('Action') }}</th>
<th>{{ _('Comments') }}</th>
</tr>
</thead>
<tbody>
{% for record in history %}
{% include 'editors/includes/history.html' %}
{% endfor %}
</tbody>
</table>
{% else %}
<p>
{{ _('No previous review entries could be found.') }}
</p>
{% endif %}

<form method="POST" action="#review-actions">
{{ csrf() }}
{# form #}
Expand Down

0 comments on commit 27938f9

Please sign in to comment.