2012-05-16 01:58:46 +05:30
{% extends "view_page_detail.html" %}
{% load my_tags %}
{% block content %}
< script type = "text/javascript" >
$(function(){
$('#tabs').tabs();
});
< / script >
< div class = "content" id = "IndividualDetail" >
{% filter breadcrumb %}
{% format "/browse|Browse,/person|People,/person/%s|Person [%s],/person/%s/name/%s|Name #%s" object.handle object.gramps_id object.handle order order %}
{% endfilter %}
< h3 > {{person|make_name:user}} [{{person.gramps_id}}]< / h3 >
< div id = "summaryarea" >
2012-05-17 17:26:59 +05:30
< table class = "infolist" style = "width:90%;" > {% comment %} 4 cols {% endcomment %}
2012-05-16 01:58:46 +05:30
< tbody >
{% if user.is_authenticated %}
{% ifequal action "edit" %}
{% for error in form.errors %}
{{error}}< br >
{% endfor %}
{% endifequal %}
{% endif %}
< form method = "post" > {% csrf_token %}
< tr >
2012-05-22 00:20:03 +05:30
< td class = "ColumnAttribute" > {{surnameform.name_origin_type.label}}:< / td >
< td class = "ColumnValue" id = "data" > {% render surnameform.name_origin_type user action %}< / td >
2012-05-16 01:58:46 +05:30
< / tr >
< tr >
2012-05-22 00:20:03 +05:30
< td class = "ColumnAttribute" > {{surnameform.primary.label}}:< / td >
< td class = "ColumnValue" id = "data" > {% render surnameform.primary user action %}< / td >
< / tr >
2012-05-16 01:58:46 +05:30
< tr >
2012-05-22 00:20:03 +05:30
< td class = "ColumnAttribute" > {{surnameform.prefix.label}}:< / td >
< td class = "ColumnValue" id = "data" > {% render surnameform.prefix user action %}< / td >
2012-05-16 01:58:46 +05:30
< / tr >
< tr >
2012-05-22 00:20:03 +05:30
< td class = "ColumnAttribute" > {{surnameform.surname.label}}:< / td >
< td class = "ColumnValue" id = "data" > {% render surnameform.surname user action %}< / td >
2012-05-16 01:58:46 +05:30
< / tr >
< tr >
2012-05-22 00:20:03 +05:30
< td class = "ColumnAttribute" > {{surnameform.connector.label}}:< / td >
< td class = "ColumnValue" id = "data" > {% render surnameform.connector user action %}< / td >
2012-05-16 01:58:46 +05:30
< / tr >
< / tbody >
< / table >
< / div >
< / div >
<!-- Tabs -->
< div class = "ui-tabs ui-widget ui-widget-content ui-corner-all" id = "tabs" >
< ul class = "ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" >
< li class = "ui-state-default ui-corner-top ui-tabs-selected ui-state-active" > < a href = "#tab-general" > General< / a > < / li >
< li class = "ui-corner-top ui-state-default" > < a href = "#tab-sources" > Sources< / a > < / li >
< li class = "ui-corner-top ui-state-default" > < a href = "#tab-notes" > Notes< / a > < / li >
< / ul >
< / div >
{% if user.is_authenticated %}
{% ifequal action "edit" %}
< input type = "hidden" name = "action" value = "save" / >
< input type = "submit" value = "Save" >
< input type = "button"
value="Cancel"
onclick="document.location.href='/person/{{person.handle}}/name/{{order}}/surname/{{sorder}}'"/>
{% else %}
< input type = "button"
value="Edit Surname"
onclick="document.location.href='/person/{{person.handle}}/name/{{order}}/surname/{{sorder}}/edit'"/>
< input type = "button"
value="Back to Person"
onclick="document.location.href='/person/{{person.handle}}'"/>
< input type = "button"
value="Back to Name"
onclick="document.location.href='/person/{{person.handle}}/name/order'"/>
{% endifequal %}
{% else %}
< input type = "button"
value="Back to Person"
onclick="document.location.href='/person/{{person.handle}}'"/>
< input type = "button"
value="Back to Name"
onclick="document.location.href='/person/{{person.handle}}/name/order'"/>
{% endif %}
< / form >
{% endblock %}