| 40 | | {% if showRegisterIndex %} |
|---|
| | 42 | {% if registerCount %} |
|---|
| | 43 | {% if isRegisterCountLow %} |
|---|
| | 44 | |
|---|
| | 45 | <div id="register-table"> |
|---|
| | 46 | <table> |
|---|
| | 47 | <tr> |
|---|
| | 48 | <th>{{domainClassName}}</th> |
|---|
| | 49 | {% block list_table_head_extn %}{% endblock %} |
|---|
| | 50 | {% if view.canUpdateDomainObject %} |
|---|
| | 51 | <th>Actions</th> |
|---|
| | 52 | {% endif %} |
|---|
| | 53 | </tr> |
|---|
| | 54 | {% for domainObject in objectRegister.getSortedList %} |
|---|
| | 55 | <tr> |
|---|
| | 56 | <td> |
|---|
| | 57 | <a href="{{uriPrefix}}/{{registryPath}}/{{domainObject.getRegisterKeyValue}}/" title="{{domainObject.getRegisterKeyValue}}">{{domainObject.getLabelValue}}</a> |
|---|
| | 58 | </td> |
|---|
| | 59 | {% block list_table_row_extn %}{% endblock %} |
|---|
| | 60 | {% if view.canUpdateDomainObject %} |
|---|
| | 61 | <td> |
|---|
| | 62 | <a href="{{uriPrefix}}/{{registryPath}}/{{domainObject.getRegisterKeyValue}}/update/" title="{{domainObject.getRegisterKeyValue}}" title="Update"> |
|---|
| | 63 | <img height="20" width="20" src="http://{{ systemMediaSocket }}{{ mediaPrefix }}/images/icon-edit.png" alt="Update" /> |
|---|
| | 64 | </a> |
|---|
| | 65 | {% if view.canDeleteDomainObject %} |
|---|
| | 66 | <a href="{{uriPrefix}}/{{registryPath}}/{{domainObject.getRegisterKeyValue}}/delete/" title="{{domainObject.getRegisterKeyValue}}" title="Delete"> |
|---|
| | 67 | <img height="20" width="20" src="http://{{ systemMediaSocket }}{{ mediaPrefix }}/images/icon-delete.png" alt="Delete" /> |
|---|
| | 68 | </a> |
|---|
| | 69 | {% endif %} |
|---|
| | 70 | </td> |
|---|
| | 71 | {% endif %} |
|---|
| | 72 | </tr> |
|---|
| | 73 | {% endfor %} |
|---|
| | 74 | </table> |
|---|
| | 75 | </div> |
|---|
| | 76 | |
|---|
| | 77 | {% else %} |
|---|