plugin_list_desc_bg.diff

patch - Giuseppe Sucameli, 2011-09-02 07:00 AM

Download (1.03 KB)

View differences:

qgis/plugins/templates/plugins/plugin_list.html
65 65
                {% if user.is_authenticated %}{% if user in object.editors or user.is_staff %}<td><a href="{% url plugin_update object.pk %}">{% trans "Edit" %}</a></td>
66 66
                <td><a class="delete" href="{% url plugin_delete object.pk %}">{% trans "Delete" %}</a></td>{% else %}<td>&nbsp;</td><td>&nbsp;</td>{% endif %}{% endif %}
67 67
            </tr>
68
            <tr id="pdesc{{object.pk}}" class="plugin-description"><td colspan="{% if user.is_authenticated %}12{% else %}11{% endif %}">{{ object.description }}</td></tr>
68
            <tr id="pdesc{{object.pk}}" class="plugin-description {% cycle "even" "odd" %}"><td colspan="{% if user.is_authenticated %}12{% else %}11{% endif %}">{{ object.description }}</td></tr>
69 69
            {% endfor %}
70 70
        </tbody>
71 71
    </table>