Skip to content

Commit

Permalink
2.2.0 e issue #2
Browse files Browse the repository at this point in the history
  • Loading branch information
aniversarioperu committed Jan 27, 2015
1 parent fcc9c50 commit 6a5d9f8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions HISTORY.rst
Expand Up @@ -2,6 +2,8 @@
History
-------
* 2.2.0 (2015-01-27) Agregado el Minem a la lista de entidades estatales. Conteo
de resultados con coma.
* 2.1.0 (2015-01-27) Ahora usando `elasticseach` para indexar la base de datos.
Es más rápido que `whoosh`.
* 2.0.0 (2015-01-25) Gran reorganización de `models`. Manolo unificado, usando
Expand Down
2 changes: 1 addition & 1 deletion manolo/__init__.py
@@ -1 +1 @@
__version__ = '2.1.0'
__version__ = '2.2.0'
1 change: 1 addition & 0 deletions manolo/settings/base.py
Expand Up @@ -113,6 +113,7 @@
'django.contrib.staticfiles',
'django.contrib.admin',

'django.contrib.humanize',
'bootstrap3',
'bootstrap_themes',

Expand Down
2 changes: 1 addition & 1 deletion manolo/templates/base.html
Expand Up @@ -58,7 +58,7 @@
<hr>
<footer>
<small class="pull-left">
<a href="https://github.com/aniversarioperu/django-manolo/"><i class="fa fa-github-alt"></i> v2.1.0</a>
<a href="https://github.com/aniversarioperu/django-manolo/"><i class="fa fa-github-alt"></i> v2.2.0</a>
</small>

<small class="pull-right">
Expand Down
4 changes: 2 additions & 2 deletions manolo/templates/search/search.html
@@ -1,5 +1,5 @@
{% extends 'base.html' %}

{% load humanize %}

{% block additional_meta %}
<meta name="robots" content="noindex">
Expand Down Expand Up @@ -36,7 +36,7 @@ <h4>Manolo es un buscador de personas que visitan entidades del Estado peruano</
{% if paginator.object_list|length > 0 %}

También puedes hacer búsquedas haciendo click sobre cada uno de los
resultados <span class="badge"><b>{{ paginator.object_list|length }}</b></span>
resultados <span class="badge"><b>{{ paginator.object_list|length|intcomma }}</b></span>
<table class='table table-hover table-striped table-bordered
table-responsive table-condensed' style='font-size: 12px;'>
<th>Institución</th></th><th>Fecha</th><th>Visitante</th><th>Documento</th><th>Entidad</th>
Expand Down

0 comments on commit 6a5d9f8

Please sign in to comment.