app/soc/templates/soc/presence/public.html
author Sverre Rabbelier <srabbelier@gmail.com>
Fri, 23 Jan 2009 15:29:42 +0000
changeset 921 e499cc2641f6
parent 903 7110fc489fd0
child 1109 a83d8c5e6650
permissions -rw-r--r--
Create a new 'home' view for Presences This also restores the 'show' view for Presences as there is no need to hide it with the 'home' view anymore. Patch by: Sverre Rabbelier

{% extends "soc/base.html" %}
{% comment %}
Licensed 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.
{% endcomment %}
{% load forms_helpers %}

{% block header_title %}
{{ page_name }} for {{ entity.link_id }}
{% endblock %}

{% block body %}
<p>
 <table>
  {% readonly_field_as_table_row entity.fields.link_id.label entity.link_id %}
  {% readonly_field_as_table_row entity.fields.home.label entity.home.key.name %}
  {% readonly_field_as_table_row entity.fields.feed_url.label entity.feed_url %}
  {% readonly_field_as_table_row entity.fields.tos.label entity.tos %}
  {% readonly_field_as_table_row entity.fields.ga_tracking_num.label entity.ga_tracking_num %}
  {% readonly_field_as_table_row entity.fields.gmaps_api_key.label entity.gmaps_api_key %}
  <!-- TODO(pawel.solyga) make this generic -->
 </table>
</p>
{% endblock %}