mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00
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:
parent
3f60b3fba3
commit
ad5e8f0524
1
TODO
1
TODO
|
@ -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
|
||||
|
|
|
@ -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 %}
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in New Issue
Block a user