2020-02-05 13:58:56 +00:00
|
|
|
{{template "head.html"}}
|
|
|
|
|
|
|
|
<h1>koushin</h1>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<a href="/contacts">Back</a>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
{{$fn := .AddressObject.Card.Value "FN"}}
|
|
|
|
|
|
|
|
<h2>Contact: {{$fn}}</h2>
|
|
|
|
|
2020-02-12 20:35:18 +00:00
|
|
|
<p>
|
2020-02-27 11:17:23 +00:00
|
|
|
<a href="{{.AddressObject.URL}}/edit">
|
2020-02-12 20:35:18 +00:00
|
|
|
Edit
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
|
2020-02-05 13:58:56 +00:00
|
|
|
<ul>
|
|
|
|
<li><strong>Name</strong>: {{$fn}}</li>
|
|
|
|
{{range .AddressObject.Card.Values "EMAIL"}}
|
|
|
|
<li><strong>E-mail</strong>:
|
|
|
|
<a href="/compose?to={{.}}">{{.}}</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{{template "foot.html"}}
|