resource_limits.twig 374 B

12345678910111213
  1. <fieldset>
  2. <legend>{% trans 'Resource limits' %}</legend>
  3. <p>
  4. <small>
  5. <em>{% trans 'Note: Setting these options to 0 (zero) removes the limit.' %}</em>
  6. </small>
  7. </p>
  8. {% for limit in limits %}
  9. {% include 'privileges/resource_limit_item.twig' with {
  10. 'limit': limit
  11. } only %}
  12. {% endfor %}
  13. </fieldset>