app/soc/templates/soc/student_proposal/public.html
changeset 1741 0da1285f5bc0
parent 1738 452f16ebe8d2
child 1752 255117ccd6a0
equal deleted inserted replaced
1740:fbc2ad561c4b 1741:0da1285f5bc0
    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 comments_helpers %}
    15 {% load forms_helpers %}
    16 {% load forms_helpers %}
    16 
    17 
    17 {% block header_title %}
    18 {% block header_title %}
    18 {{ page_name }} "{{ entity.title }}" from {{ student_name }}
    19 {{ page_name }} "{{ entity.title }}" from {{ student_name }}
    19 {% endblock %}
    20 {% endblock %}
    21 {% block body %}
    22 {% block body %}
    22 <p>
    23 <p>
    23  <table>
    24  <table>
    24   {% readonly_field_as_table_row entity.fields.title.label entity.title %}
    25   {% readonly_field_as_table_row entity.fields.title.label entity.title %}
    25   {% readonly_field_as_table_row "Student" student_name %}
    26   {% readonly_field_as_table_row "Student" student_name %}
    26   {% readonly_field_as_table_row "Mentor" mentor_name %}
       
    27   {% readonly_field_as_twoline_table_row entity.fields.abstract.label entity.abstract %}
    27   {% readonly_field_as_twoline_table_row entity.fields.abstract.label entity.abstract %}
    28   {% readonly_safe_field_as_twoline_table_row entity.fields.content.label entity.content %}
    28   {% readonly_safe_field_as_twoline_table_row entity.fields.content.label entity.content %}
    29   {% readonly_field_as_table_row "Created on" entity.created_on %}
    29   {% readonly_field_as_table_row "Created on" entity.created_on %}
    30   {% readonly_field_as_table_row "Last Modified on" entity.last_modified_on %}
    30   {% readonly_field_as_table_row "Last Modified on" entity.last_modified_on %}
    31  </table>
    31  </table>
    32 </p>
    32 </p>
       
    33 
       
    34 <hr/>
       
    35 <b>Public Reviews</b>
       
    36 {% for review in public_reviews %}
       
    37   {% as_review review %}
       
    38 {% endfor %}
       
    39 <hr/>
    33 {% endblock %}
    40 {% endblock %}