# Case Meta Information

ADX allows you to access all the meta information available about a case. There are two ways to access these:

## `CASE` Instance

Using `CASE` you can access all the [meta information available in RuLa](https://docs.atfinity.io/rule-language/global-constants/case-constant).

## META dictionary

A special dictionary META is supplied to the Jinja template engine that contains. information about the rendering process. You access those with for example&#x20;

<pre class="language-xml"><code class="lang-xml">&#x3C;text>{{META.language}}&#x3C;/text>
&#x3C;text>{{META.editable}}&#x3C;/text>
<strong>&#x3C;text>{{META.rendered_at}}&#x3C;/text>
</strong></code></pre>

#### language

The language key of the requested rendering language, e.g. `de` or `en`

#### editable

A boolean wether the document is rendered as editable or not

#### rendered\_at

A django timezoned datetime object that represents the time of rendering. You can e.g. display the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time of rendering with `META.rendered_at.isoformat()`.
