Changeset 330
- Timestamp:
- 04/30/08 12:58:52 (8 months ago)
- Files:
-
- trunk/src/dm/django/templates/registry/find.html (modified) (4 diffs)
- trunk/src/dm/django/templates/registry/list.html (modified) (2 diffs)
- trunk/src/dm/django/templates/registry/search.html (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/dm/django/templates/registry/find.html
r264 r330 70 70 71 71 {% if resultsCount %} 72 <br /> 72 73 <table> 73 74 <tr> … … 79 80 </tr> 80 81 {% for domainObject in domainObjectList %} 81 <tr >82 <tr{% block is_domain_object_inactive%}{% endblock %}> 82 83 <td> 83 84 <a href="{{uriPrefix}}/{{registryAttribute}}/{{ domainObject.getRegisterKeyValue }}/" title="{{ domainObject.getPersonalLabelValue }}">{{ domainObject.getPersonalLabel }}</a> … … 86 87 {% if view.canUpdateDomainObject %} 87 88 <td> 89 {% block find_item_update_btn %} 88 90 <a href="{{uriPrefix}}/{{registryPath}}/{{domainObject.getRegisterKeyValue}}/update/" title="{{domainObject.getRegisterKeyValue}}" title="Update"> 89 91 <img height="20" width="20" src="http://{{ systemMediaSocket }}{{ mediaPrefix }}/images/icon-edit.png" alt="Update" /> 90 92 </a> 93 {% endblock %} 94 {% block find_item_delete_btn %} 91 95 {% if view.canDeleteDomainObject %} 92 96 <a href="{{uriPrefix}}/{{registryPath}}/{{domainObject.getRegisterKeyValue}}/delete/" title="{{domainObject.getRegisterKeyValue}}" title="Delete"> … … 94 98 </a> 95 99 {% endif %} 100 {% endblock %} 101 {% block find_item_actions_extn %} 102 {% endblock %} 96 103 </td> 97 104 {% endif %} trunk/src/dm/django/templates/registry/list.html
r329 r330 47 47 <td> 48 48 {% block list_item_update_btn %} 49 <a href="{{uriPrefix}}/{{registryPath}}/{{domainObject.getRegisterKeyValue}}/update/" title="{{domainObject.getRegisterKeyValue}}" title="Update"> 50 <img height="20" width="20" src="http://{{ systemMediaSocket }}{{ mediaPrefix }}/images/icon-edit.png" alt="Update" /> 51 </a> 49 <a 50 href="{{uriPrefix}}/{{registryPath}}/{{domainObject.getRegisterKeyValue}}/update/" 51 title="Update" 52 ><img 53 height="20" 54 width="20" 55 src="http://{{ systemMediaSocket }}{{ mediaPrefix }}/images/icon-edit.png" 56 alt="Update" 57 /></a> 52 58 {% endblock %} 53 59 {% block list_item_delete_btn %} … … 57 63 </a> 58 64 {% endif %} 65 {% endblock %} 66 {% block list_item_actions_extn %} 59 67 {% endblock %} 60 68 </td> trunk/src/dm/django/templates/registry/search.html
r264 r330 70 70 71 71 {% if resultsCount %} 72 <br /> 72 73 <table> 73 74 <tr> … … 78 79 {% endif %} 79 80 </tr> 80 81 81 {% for domainObject in domainObjectList %} 82 <tr >82 <tr{% block is_domain_object_inactive%}{% endblock %}> 83 83 <td> 84 84 <a href="{{uriPrefix}}/{{registryAttribute}}/{{ domainObject.getRegisterKeyValue }}/" title="{{ domainObject.getPersonalLabelValue }}">{{ domainObject.getPersonalLabel }}</a> … … 87 87 {% if view.canUpdateDomainObject %} 88 88 <td> 89 {% block search_item_update_btn %} 89 90 <a href="{{uriPrefix}}/{{registryPath}}/{{domainObject.getRegisterKeyValue}}/update/" title="{{domainObject.getRegisterKeyValue}}" title="Update"> 90 91 <img height="20" width="20" src="http://{{ systemMediaSocket }}{{ mediaPrefix }}/images/icon-edit.png" alt="Update" /> 91 92 </a> 93 {% endblock %} 94 {% block search_item_delete_btn %} 92 95 {% if view.canDeleteDomainObject %} 93 96 <a href="{{uriPrefix}}/{{registryPath}}/{{domainObject.getRegisterKeyValue}}/delete/" title="{{domainObject.getRegisterKeyValue}}" title="Delete"> … … 95 98 </a> 96 99 {% endif %} 100 {% endblock %} 101 {% block search_item_actions_extn %} 102 {% endblock %} 97 103 </td> 98 104 {% endif %}
