This is an automated email from the ASF dual-hosted git repository. brondsem pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/allura.git
commit 5c012d89156afd27f61825e881c578d092a7406f Author: Dave Brondsema <[email protected]> AuthorDate: Wed Jun 12 11:41:23 2024 -0400 delete unused jinja file with invalid syntax --- ForgeChat/forgechat/templates/chat/index.html | 35 --------------------------- 1 file changed, 35 deletions(-) diff --git a/ForgeChat/forgechat/templates/chat/index.html b/ForgeChat/forgechat/templates/chat/index.html deleted file mode 100644 index 06bafdefa..000000000 --- a/ForgeChat/forgechat/templates/chat/index.html +++ /dev/null @@ -1,35 +0,0 @@ -{#- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. --#} -{% extends g.theme.master %} -{% import "forgechat:templates/chat/chat_lib.html" as clib %} - -{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %} - -{% block header %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %} - -{% block content %} - {{ clib.checkout_info(c.app) }} - <ul> - {% for msg in messages %} - <li> - {{msg.timestamp.isoformat(' ')}}: {{msg.sender.split('!')[0]}}: {{msg.text}} - </li> - {% endfor %} - </ul> -{% endif %}
