You are here: Home » community-de » FAQ » objectis_account » Wie kann ich erfahren, wie viel Speicherplatz noch ...

Wie kann ich erfahren, wie viel Speicherplatz noch für meine Site zur Verfügung steht?

Document Actions

Gehen Sie ins ZMI, und legen Sie ein neues "Page Template" Objekt an. Der Code für dieses Objekt sollte wie folgt lauten:

<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>