Remove unused month selection.

This commit is contained in:
Alexis Lahouze 2015-06-17 00:30:49 +02:00
parent 120e22c1fe
commit feef6dd880
3 changed files with 0 additions and 23 deletions

View File

@ -131,18 +131,3 @@
</div>
{% endblock %}
{% block footer %}
<!-- Navbar with the months of the selected account -->
<div class="navbar navbar-default navbar-fixed-bottom" role="navigation" ng-controller="MonthController">
<ul class="nav navbar-nav">
<li ng-repeat="month in months" ng-class="monthClass(month)"><a href="#" ng-click="selectMonth(month)">[[month.year]]-[[month.month]]</a></li>
</ul>
</div>
{% endblock %}
<!-- Custom Javascript library for entries -->
{% block js %}
{% endblock %}

View File

@ -69,7 +69,6 @@
</div>
</div>
{% block footer %}{% endblock %}
<script type="text/javascript" src="{{ url_for('frontend.static', filename="build/js/vendor.js") }}"></script>
<!-- Custom Javascript library for entries -->

View File

@ -97,10 +97,3 @@
</table>
</div>
{% endblock %}
{% block js %}
<script type="text/javascript" src="{{ url_for('frontend.static', filename='js/months.js') }}"></script>
<script type="text/javascript" src="{{ url_for('frontend.static', filename='js/accounts.js') }}"></script>
<script type="text/javascript" src="{{ url_for('frontend.static', filename='js/scheduler.js') }}"></script>
{% endblock %}