diff options
Diffstat (limited to 'plugins/carddav/public')
-rw-r--r-- | plugins/carddav/public/address-book.html | 34 | ||||
-rw-r--r-- | plugins/carddav/public/address-object.html | 22 |
2 files changed, 56 insertions, 0 deletions
diff --git a/plugins/carddav/public/address-book.html b/plugins/carddav/public/address-book.html new file mode 100644 index 0000000..f521564 --- /dev/null +++ b/plugins/carddav/public/address-book.html @@ -0,0 +1,34 @@ +{{template "head.html"}} + +<h1>koushin</h1> + +<p> + <a href="/">Back</a> +</p> + +<h2>Contacts: {{.AddressBook.Name}}</h2> + +<form method="get" action=""> + <input type="search" name="query" value="{{.Query}}"> + <input type="submit" value="Search"> +</form> + +{{if .AddressObjects}} + <ul> + {{range .AddressObjects}} + <li> + <a href="/contacts/{{.Card.Value "UID" | pathescape}}"> + {{.Card.Value "FN"}} + </a> + {{$email := .Card.PreferredValue "EMAIL"}} + {{if $email}} + <<a href="/compose?to={{$email}}">{{$email}}</a>> + {{end}} + </li> + {{end}} + </ul> +{{else}} + <p>No contact.</p> +{{end}} + +{{template "foot.html"}} diff --git a/plugins/carddav/public/address-object.html b/plugins/carddav/public/address-object.html new file mode 100644 index 0000000..2c96fd4 --- /dev/null +++ b/plugins/carddav/public/address-object.html @@ -0,0 +1,22 @@ +{{template "head.html"}} + +<h1>koushin</h1> + +<p> + <a href="/contacts">Back</a> +</p> + +{{$fn := .AddressObject.Card.Value "FN"}} + +<h2>Contact: {{$fn}}</h2> + +<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"}} |