mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 20:59: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:
|
* Submit layer form fixes:
|
||||||
* Layout for maintainers (js collapse?)
|
* Layout for maintainers (js collapse?)
|
||||||
* Captcha
|
* Captcha
|
||||||
* Show unpublished layers in a different style in the dependency list?
|
|
||||||
|
|
||||||
Later:
|
Later:
|
||||||
* Allow adding/editing notes
|
* Allow adding/editing notes
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td><input type="checkbox" name="deps" value="{{ deplayer.id }}" id="id_deps_{{forloop.counter}}" checked="checked" /></td>
|
<td><input type="checkbox" name="deps" value="{{ deplayer.id }}" id="id_deps_{{forloop.counter}}" checked="checked" /></td>
|
||||||
{% if deplayer.status = 'N' %}
|
{% 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 %}
|
{% else %}
|
||||||
<td><label for="id_deps_{{forloop.counter}}">{{ deplayer.name }}</label></td>
|
<td><label for="id_deps_{{forloop.counter}}">{{ deplayer.name }}</label></td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td><input type="checkbox" name="deps" value="{{ deplayer.id }}" id="id_deps_{{forloop.counter}}" /></td>
|
<td><input type="checkbox" name="deps" value="{{ deplayer.id }}" id="id_deps_{{forloop.counter}}" /></td>
|
||||||
{% if deplayer.status = 'N' %}
|
{% 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 %}
|
{% else %}
|
||||||
<td><label for="id_deps_{{forloop.counter}}">{{ deplayer.name }}</label></td>
|
<td><label for="id_deps_{{forloop.counter}}">{{ deplayer.name }}</label></td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% autoescape on %}
|
{% 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 %}
|
{% endautoescape %}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user