app/soc/templates/soc/templatetags/_readonly_field_as_twoline_table_row.html
author Pawel Solyga <Pawel.Solyga@gmail.com>
Wed, 04 Mar 2009 16:46:54 +0000
changeset 1618 1a9820619d5f
parent 1586 8a6caee3c9d6
child 1815 7a9b69f36111
permissions -rw-r--r--
Fix indention in _readonly_field_as_twoline_table_row.html template. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

{% comment %}
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
{% endcomment %}

{% if field_value %}
 <tr>
 <td class="twolineformfieldlabel">
     {{ field_label }}:
 </td>
 </tr>
<tr title="{{ field.help_text }}">
 <td class="formfieldvalue">
  {% block field_value_column %}
    {{ field_value }}
  {% endblock %}
 </td>
</tr>
{% endif %}