summaryrefslogtreecommitdiffstats
path: root/templates/contactDetails.html
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-03-08 12:04:04 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-03-08 15:30:52 +0100
commit7edd6d1792c846319c86028ecee101d4535c4fd9 (patch)
treefec33a84b3e09eedcbde6768712952512acc6ee4 /templates/contactDetails.html
parent30775a793000304419b0d7c4e402ac1e0a5eeb39 (diff)
Org and title are now part of the header - fixes #103
Diffstat (limited to 'templates/contactDetails.html')
-rw-r--r--templates/contactDetails.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/contactDetails.html b/templates/contactDetails.html
index dbd819a7..146f7d4d 100644
--- a/templates/contactDetails.html
+++ b/templates/contactDetails.html
@@ -12,6 +12,12 @@
name="email" ng-model="ctrl.contact.fullName" ng-model-options="{ getterSetter: true, debounce: 500 }" ng-change="ctrl.updateContact()" value="" />
</h2>
<button ng-click="ctrl.deleteContact()" class="icon-delete-white" title="Delete"></button>
+ <div>
+ <input type="text" id="details-org" class="contactdetails__org" placeholder="{{ctrl.t.placeholderOrg}}" autocomplete="off"
+ name="email" ng-model="ctrl.contact.org" ng-model-options="{ getterSetter: true, debounce: 500 }" ng-change="ctrl.updateContact()" value="" />
+ <input type="text" id="details-title" class="contactdetails__title" placeholder="{{ctrl.t.placeholderTitle}}" autocomplete="off"
+ name="email" ng-model="ctrl.contact.title" ng-model-options="{ getterSetter: true, debounce: 500 }" ng-change="ctrl.updateContact()" value="" />
+ </div>
</header>
<section>
<div ng-repeat="prop in ctrl.contact.props | toArray | orderDetailItems:'$key'">