minor web -> view

This commit is contained in:
Sanj 2011-07-11 15:16:50 +05:30
parent 6c954e16a9
commit b4e2a59ebf

View File

@ -59,7 +59,7 @@ If you are a participant looking to open a new account, please write to hello@ed
<li data-id="{{ o.id }}"> <li data-id="{{ o.id }}">
<span class="articleTitle">{{ o.title }}</span> <span class="articleTitle">{{ o.title }}</span>
{% if o.is_locked %} locked {% else %} <a href="{{ o.edit_url }}" title="Edit Article" target="_blank">edit</a> {% endif %} {% if o.is_locked %} locked {% else %} <a href="{{ o.edit_url }}" title="Edit Article" target="_blank">edit</a> {% endif %}
<a href="{{ o.web_url }}" title="View as Webpage" target="_blank">web</a> <a href="{{ o.web_url }}" title="View as Webpage" target="_blank">view</a>
<a href="#" class="createCopy" title="Create a copy of this article!">copy</a> <a href="#" class="createCopy" title="Create a copy of this article!">copy</a>
</li> </li>
{% empty %} {% empty %}
@ -73,7 +73,7 @@ If you are a participant looking to open a new account, please write to hello@ed
<li data-id="{{ t.id }}"> <li data-id="{{ t.id }}">
<span class="articleTitle">{{ t.title }}</span> <span class="articleTitle">{{ t.title }}</span>
{% if o.is_locked %} {% else %} <a href="{{ t.edit_url }}" title="Edit Article" target="_blank">edit</a> {% endif %} {% if o.is_locked %} {% else %} <a href="{{ t.edit_url }}" title="Edit Article" target="_blank">edit</a> {% endif %}
<a href="{{ t.web_url }}" title="View as Webpage" target="_blank">web</a> <a href="{{ t.web_url }}" title="View as Webpage" target="_blank">view</a>
<a href="#" class="createCopy" title="Create a copy of this article!">copy</a> <a href="#" class="createCopy" title="Create a copy of this article!">copy</a>
</li> </li>
{% endfor %} {% endfor %}
@ -84,7 +84,7 @@ If you are a participant looking to open a new account, please write to hello@ed
{% for p in pub_list %} {% for p in pub_list %}
<li data-id="{{ p.id }}"> <li data-id="{{ p.id }}">
<span class="articleTitle">{{ p.title }}</span> <span class="articleTitle">{{ p.title }}</span>
<a href="{{ p.web_url }}" title="View as Webpage" target="_blank">web</a> <a href="{{ p.web_url }}" title="View as Webpage" target="_blank">view</a>
<a href="#" class="createCopy" title="Create a copy of this article!">copy</a> <a href="#" class="createCopy" title="Create a copy of this article!">copy</a>
</li> </li>
{% endfor %} {% endfor %}