Clarify language around publishing layers

Show "unpublished" rather than "new" in dependencies list in submit
form, and mention publishing as the operation in the "thanks for
submitting" page.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2013-02-27 16:50:34 +00:00
parent 3f60b3fba3
commit ad5e8f0524
3 changed files with 3 additions and 4 deletions

1
TODO
View File

@ -12,7 +12,6 @@ TODO:
* Submit layer form fixes:
* Layout for maintainers (js collapse?)
* Captcha
* Show unpublished layers in a different style in the dependency list?
Later:
* Allow adding/editing notes

View File

@ -42,7 +42,7 @@
<tr>
<td><input type="checkbox" name="deps" value="{{ deplayer.id }}" id="id_deps_{{forloop.counter}}" checked="checked" /></td>
{% if deplayer.status = 'N' %}
<td><label class="muted" for="id_deps_{{forloop.counter}}">{{ deplayer.name }} (new)</label></td>
<td><label class="muted" for="id_deps_{{forloop.counter}}">{{ deplayer.name }} (unpublished)</label></td>
{% else %}
<td><label for="id_deps_{{forloop.counter}}">{{ deplayer.name }}</label></td>
{% endif %}
@ -54,7 +54,7 @@
<tr>
<td><input type="checkbox" name="deps" value="{{ deplayer.id }}" id="id_deps_{{forloop.counter}}" /></td>
{% if deplayer.status = 'N' %}
<td><label class="muted" for="id_deps_{{forloop.counter}}">{{ deplayer.name }} (new)</label></td>
<td><label class="muted" for="id_deps_{{forloop.counter}}">{{ deplayer.name }} (unpublished)</label></td>
{% else %}
<td><label for="id_deps_{{forloop.counter}}">{{ deplayer.name }}</label></td>
{% endif %}

View File

@ -18,7 +18,7 @@
{% block content %}
{% autoescape on %}
<p>Thank you for submitting a layer. Your submission will be reviewed and if accepted should appear in the index soon.</p>
<p>Thank you for submitting a layer. Your submission will be reviewed and if accepted should be published in the index soon.</p>
{% endautoescape %}