-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from vikingco/story/TFD-379/remove-dependency-…
…to-mvne Removed mvne code.
- Loading branch information
Showing
9 changed files
with
94 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,6 @@ pip-log.txt | |
# i18n db | ||
.django.po-backup* | ||
.djangojs.po-backup* | ||
|
||
# pycharm configuration | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
24 changes: 10 additions & 14 deletions
24
...ajax/templates/pagination/digg-style.html → ...emplates/pagination/paginate-verbose.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{% load macro i18n pagination %} | ||
|
||
{% macro "header" %} | ||
{% if total > 1 %} | ||
<div class="pagination{% if preload %} pagination_preload{% endif %}"><p> | ||
{% if prev_page %} | ||
<a class="prev more-link" href="{{ request.path }}{% paginated_querystring page_variable prev_page %}">« {% trans "previous" %}</a> | ||
{% endif %} | ||
{% blocktrans %}Page <strong>{{ current }}</strong> of <strong>{{ total }}</strong>{% endblocktrans %} | ||
{% if next_page %} | ||
<a class="next more-link" href="{{ request.path }}{% paginated_querystring page_variable next_page %}">{% trans "next" %} »</a> | ||
{% endif %} | ||
</p></div> | ||
{% endif %} | ||
{% endmacro %} | ||
|
||
|
||
<div class="paginate-container paginate-glossyp-style"> | ||
{{ body|safe }} | ||
{% callmacro "header" %} | ||
</div> | ||
|
||
<div class="paginate-loading" style="display: none; "> | ||
<div style="margin: 50px;"> | ||
{% include "django-ajax/_loader.html" %} | ||
</div> | ||
</div> |
Oops, something went wrong.