You are here: Home » Community » FAQ » My Objectis account » How do I know how much space is available on my si ...

How do I know how much space is available on my site?

Document Actions

Go to the ZMI, and add a new "Page Template" object, with the code below :

<ul>
  <li>
    <strong>Space used:</strong>
    <span tal:replace="container/current_size" /> bytes
  </li>
  <li>
    <strong>Total space allowed:</strong>
    <span tal:replace="container/quota_bytes" /> bytes
  </li>
  <li>
    <strong>Number of objects:</strong>
    <span tal:replace="container/current_count" />
  </li>
  <li>
    <strong>Max number of objects:</strong>
    <span tal:replace="container/quota_objects" />
  </li>
  <li>
    <strong>Object max size:</strong>
    <span tal:replace="container/quota_maxsize" />
  </li>
</ul>