Skip to content

Commit

Permalink
editing singleton seried data while issue is reserved
Browse files Browse the repository at this point in the history
  • Loading branch information
jochengcd committed Mar 8, 2015
1 parent 1dd17f9 commit c42e0df
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions templates/gcd/details/issue.html
Expand Up @@ -178,12 +178,12 @@ <h3>
action="{% url edit_two_issues issue_id=issue.id %}">
<input type="submit" value="{% trans 'Edit with another issue' %}">
</form>
{% if issue.series.is_singleton %}
<div class="edit_header">Editing Series Data</div>
{% with object=issue.series object_name='Series' object_class='series' %}
{% include "gcd/bits/status_banner.html" %}
{% endwith %}
{% endif %}
{% endif %}
{% if user.is_authenticated and issue.series.is_singleton %}
<div class="edit_header">Editing Series Data</div>
{% with object=issue.series object_name='Series' object_class='series' %}
{% include "gcd/bits/status_banner.html" %}
{% endwith %}
{% endif %}
{% endif %}
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/oi/edit/compare_cover.html
Expand Up @@ -69,7 +69,7 @@ <h2> cover uploaded
<a href="{{ revision.issue.get_absolute_url }}">{{ cover_tag }}</a>
{% if cover_width %}
<div>The full cover file has a width of {{ cover_width }} pixels.</div>
{% if perms.gcd.can_approve and revision.created > settings.NEW_SITE_COVER_CREATION_DATE and not settings.BETA %}
{% if perms.gcd.can_vote and revision.created > settings.NEW_SITE_COVER_CREATION_DATE and not settings.BETA %}
<a href="{{ revision.approved_file }}">full uploaded cover</a>
{% endif %}
{% endif %}
Expand Down

0 comments on commit c42e0df

Please sign in to comment.