summaryrefslogtreecommitdiffstats
path: root/templates/html/htmltypeconstraints.tpl
blob: ccb357915a83a7eb190484455aa2c917c0970e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{# obj should be a class or member #}
{% if obj.typeConstraints %}
  <div class="typeconstraint">
  <dl><dt><b>{{ tr.typeConstraints }}</b></dt>
  <dd><table border="0" cellspacing="2" cellpadding="0">
  {% for arg in obj.typeConstraints %}
    <tr><td valign="top"><em>{{ arg.name }}</em></td>
        <td>&#160;</td><td valign="top"><em>{{ arg.type }}</em></td>
        <td>&#160;</td><td>{{ arg.docs }}</td>
    </tr>
  {% endfor %}
  </table></dl></div>
{% endif %}