_right_sidebar.html 1.31 KB
<div id="right-sidebar" class="sidebar">
  <ion-content>
    <h2>
      <span>Filtros</span>
      <button menu-toggle="right" class="button button-icon icon ion-close-circled" hide-when="large"></button>
    </h2>
    <h3 ng-show="profile.region">
      Mostrar apenas propostas da sua cidade! 
      <label class="checkbox my-city-cbox checkbox-balanced">
        <input type="checkbox" ng-click="loadProposalsOfMyCity()" />
      </label>
    </h3>
    <form ng-submit="updateProfile(profile)">
      <h3 ng-show="!profile.region" class="choose-city">
        <a ng-click="loadStates()">Escolha a sua cidade</a>
        <ng-include ng-show="states.length != 0" src="'html/_select_state.html'"></ng-include>
      </h3>

      <p class="text-center" style="clear: both;" ng-show="!profile.region && (cities.length != 0)">
        <button class="button" type="submit">Salvar</button>
      </p>

    </form>
    <h3>Mostrar apenas propostas do eixo:</h3>
    <ion-radio class="radio-balanced" ng-value="'all'" ng-model="topicFilter.value" ng-click="$parent.reloadProposals()">Todos</ion-radio>
    <label ng-repeat="topic in topics">
      <ion-radio class="radio-balanced" ng-value="topic.id" ng-model="topicFilter.value" ng-click="$parent.reloadProposals()">
        {{topic.title}}
      </ion-radio>
    </label>
  </ion-content>
</div>