Changeset 339
- Timestamp:
- 05/01/08 23:23:05 (7 months ago)
- Files:
-
- trunk/src/dm/django/templates/registry/find.html (modified) (2 diffs)
- trunk/src/dm/django/templates/registry/list.html (modified) (2 diffs)
- trunk/src/dm/django/templates/registry/listall.html (modified) (1 diff)
- trunk/src/dm/django/templates/registry/search.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/dm/django/templates/registry/find.html
r330 r339 73 73 <table> 74 74 <tr> 75 <th>{{domainClassName}}</th>75 {% block search_key_name %}<th>{{domainClassName}}</th>{% endblock %} 76 76 {% block find_table_head_extn %}{% endblock %} 77 77 {% if view.canUpdateDomainObject %} … … 81 81 {% for domainObject in domainObjectList %} 82 82 <tr{% block is_domain_object_inactive%}{% endblock %}> 83 {% block search_key_value %} 83 84 <td> 84 85 <a href="{{uriPrefix}}/{{registryAttribute}}/{{ domainObject.getRegisterKeyValue }}/" title="{{ domainObject.getPersonalLabelValue }}">{{ domainObject.getPersonalLabel }}</a> 85 86 </td> 87 {% endblock %} 86 88 {% block find_table_row_extn %}{% endblock %} 87 89 {% if view.canUpdateDomainObject %} trunk/src/dm/django/templates/registry/list.html
r338 r339 32 32 <table> 33 33 <tr> 34 <th>{{domainClassName}}</th>34 {% block list_key_name %}<th>{{domainClassName}}</th>{% endblock %} 35 35 {% block list_table_head_extn %}{% endblock %} 36 36 {% if view.canUpdateDomainObject %} … … 40 40 {% for domainObject in objectRegister.getSortedList %} 41 41 <tr{% block is_domain_object_inactive%}{% endblock %}> 42 {% block list_key_value %} 42 43 <td> 43 44 <a href="{{uriPrefix}}/{{registryPath}}/{{domainObject.getRegisterKeyValue}}/" title="{{domainObject.getRegisterKeyValue}}">{{domainObject.getLabelValue}}</a> 44 45 </td> 46 {% endblock %} 45 47 {% block list_table_row_extn %}{% endblock %} 46 48 {% if view.canUpdateDomainObject %} trunk/src/dm/django/templates/registry/listall.html
r338 r339 32 32 <tr{% block is_domain_object_inactive%}{% endblock %}> 33 33 <td> 34 {% block list_item_key_label %} 34 35 <a href="{{uriPrefix}}/{{registryPath}}/{{domainObject.getRegisterKeyValue}}/" title="{{domainObject.getRegisterKeyValue}}">{{domainObject.getLabelValue}}</a> 36 {% endblock %} 35 37 </td> 36 38 {% block list_table_row_extn %}{% endblock %} trunk/src/dm/django/templates/registry/search.html
r330 r339 73 73 <table> 74 74 <tr> 75 <th>{{domainClassName}}</th>75 {% block search_key_name %}<th>{{domainClassName}}</th>{% endblock %} 76 76 {% block search_table_head_extn %}{% endblock %} 77 77 {% if view.canUpdateDomainObject %} … … 81 81 {% for domainObject in domainObjectList %} 82 82 <tr{% block is_domain_object_inactive%}{% endblock %}> 83 {% block search_key_value %} 83 84 <td> 84 85 <a href="{{uriPrefix}}/{{registryAttribute}}/{{ domainObject.getRegisterKeyValue }}/" title="{{ domainObject.getPersonalLabelValue }}">{{ domainObject.getPersonalLabel }}</a> 85 86 </td> 87 {% endblock %} 86 88 {% block search_table_row_extn %}{% endblock %} 87 89 {% if view.canUpdateDomainObject %}
