@ngdoc tutorial @name 6 - Two-way Data Binding @step 6 @description In this step, we will add a feature to let our users control the order of the items in the phone list. The dynamic ordering is implemented by creating a new model property, wiring it together with the repeater, and letting the data binding magic do the rest of the work. * In addition to the search box, the application displays a drop-down menu that allows users to control the order in which the phones are listed.
## Component Template
**`app/phone-list/phone-list.template.html`:** ```html

Search:

Sort by:

  • {{phone.name}}

    {{phone.snippet}}

``` We made the following changes to the `phone-list.template.html` template: * First, we added a `