Skip to content

Commit 836df16

Browse files
committed
Merge pull request #32 from vaultah/master
Fixing the warning for wiki and canon pages
2 parents 6c0153b + aa79600 commit 836df16

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

sopy/templates/canon/detail.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<div class="row"><div class="col-md-12">
77
<h2 class="page-header">{{ item.title|markdown }}</h2>
88

9-
{% if item.draft %}<div class="alert alert-warning">This page is in draft mode. Only editors and logged in users with the link may view it.</div>{% endif %}
9+
{% if item.draft %}<div class="alert alert-warning">This page is in draft mode. Only editors or anyone with the link may view it.</div>{% endif %}
1010
{% if item.community %}<div class="alert alert-info">This page is in community mode. Any logged in users may edit it.</div>{% endif %}
1111

1212
<ul class="list-inline pull-right">

sopy/templates/wiki/detail.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="row"><div class="col-md-12">
55
<h2 class="page-header">{% block title %}{{ page.title }}{% endblock %}</h2>
66

7-
{% if page.draft %}<div class="alert alert-warning">This page is in draft mode. Only editors or any logged in users with the link may view it.</div>{% endif %}
7+
{% if page.draft %}<div class="alert alert-warning">This page is in draft mode. Only editors or anyone with the link may view it.</div>{% endif %}
88
{% if page.community %}<div class="alert alert-info">This page is in community mode. Any logged in users may edit it.</div>{% endif %}
99

1010
<ul class="list-inline pull-right">

0 commit comments

Comments
 (0)