app/soc/templates/soc/presence/public.html
changeset 921 e499cc2641f6
parent 903 7110fc489fd0
child 1109 a83d8c5e6650
equal deleted inserted replaced
920:39badbfb80be 921:e499cc2641f6
     1 {% extends "soc/home/public.html" %}
     1 {% extends "soc/base.html" %}
     2 {% comment %}
     2 {% comment %}
     3 Licensed under the Apache License, Version 2.0 (the "License");
     3 Licensed under the Apache License, Version 2.0 (the "License");
     4 you may not use this file except in compliance with the License.
     4 you may not use this file except in compliance with the License.
     5 You may obtain a copy of the License at
     5 You may obtain a copy of the License at
     6 
     6 
    10 distributed under the License is distributed on an "AS IS" BASIS,
    10 distributed under the License is distributed on an "AS IS" BASIS,
    11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12 See the License for the specific language governing permissions and
    12 See the License for the specific language governing permissions and
    13 limitations under the License.
    13 limitations under the License.
    14 {% endcomment %}
    14 {% endcomment %}
       
    15 {% load forms_helpers %}
    15 
    16 
    16 {% block missing_doc %}
    17 {% block header_title %}
    17 The contents of this default Site home page can be changed by
    18 {{ page_name }} for {{ entity.link_id }}
    18 <a href="/document/edit">creating a new Document</a> or
       
    19 <a href="/document/list">editing an existing Document</a> and then selecting
       
    20 that Document in the
       
    21 <a href="/site/edit">Site Settings</a> interface.
       
    22 Other elements of this page, such as a feed to be displayed below this
       
    23 content, can also be set using the
       
    24 <a href="/site/edit">Site Settings</a> interface.
       
    25 You need to sign in as site Developer in order to change
       
    26 <a href="/site/edit">Site Settings</a>.
       
    27 {% endblock %}
    19 {% endblock %}
       
    20 
       
    21 {% block body %}
       
    22 <p>
       
    23  <table>
       
    24   {% readonly_field_as_table_row entity.fields.link_id.label entity.link_id %}
       
    25   {% readonly_field_as_table_row entity.fields.home.label entity.home.key.name %}
       
    26   {% readonly_field_as_table_row entity.fields.feed_url.label entity.feed_url %}
       
    27   {% readonly_field_as_table_row entity.fields.tos.label entity.tos %}
       
    28   {% readonly_field_as_table_row entity.fields.ga_tracking_num.label entity.ga_tracking_num %}
       
    29   {% readonly_field_as_table_row entity.fields.gmaps_api_key.label entity.gmaps_api_key %}
       
    30   <!-- TODO(pawel.solyga) make this generic -->
       
    31  </table>
       
    32 </p>
       
    33 {% endblock %}