Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Default theme implementation for a forum post submission string. Chris@0: * Chris@0: * The submission string indicates when and by whom a topic was submitted. Chris@0: * Chris@0: * Available variables: Chris@0: * - author: The author of the post. Chris@0: * - time: How long ago the post was created. Chris@0: * - topic: An object with the raw data of the post. Potentially unsafe. Be Chris@0: * sure to clean this data before printing. Chris@0: * Chris@0: * @see template_preprocess_forum_submitted() Chris@0: * Chris@0: * @ingroup themeable Chris@0: */ Chris@0: #} Chris@0: {% if time %} Chris@0: {% trans %}By {{ author }} {{ time }} ago{% endtrans %} Chris@0: {% else %} Chris@0: {{ 'n/a'|t }} Chris@0: {% endif %}