aboutsummaryrefslogblamecommitdiff
path: root/plugins/carddav/public/address-object.html
blob: 2b37768c87b66720d63510c6ba76031f0078a6c7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                          
 
             








                                         
   
                                        

        


                                                             

    









                                              
{{template "head.html" .}}

<h1>alps</h1>

<p>
  <a href="/contacts">Back</a>
</p>

{{$fn := .AddressObject.Card.Value "FN"}}

<h2>Contact: {{$fn}}</h2>

<p>
  <a href="{{.AddressObject.URL}}/edit">
    Edit
  </a>
  <form action="{{.AddressObject.URL}}/delete" method="post">
    <input type="submit" value="Delete">
  </form>
</p>

<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"}}