This file contains hidden or 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
| Django==2.2.3 | |
| django-cors-headers==3.0.2 | |
| django-filter==2.2.0 | |
| djangorestframework==3.10.0 | |
| djangorestframework-jwt==1.11.0 | |
| PyJWT==1.7.1 | |
| pytz==2019.1 | |
| sqlparse==0.3.0 |
This file contains hidden or 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
| {% load static %}<!DOCTYPE html> | |
| <html> | |
| <head> | |
| {% block title_outer %} | |
| <title>{% block title %}{{ site.name }}{% endblock %}</title> | |
| {% endblock %} | |
| {% block meta %} | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-COMPATIBLE" content="IE=edge"> |
This file contains hidden or 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
| <ul class="pagination"> | |
| {% if page_obj.has_previous %} | |
| <li><a href="?page={{ page_obj.previous_page_number }}">«</a></li> | |
| {% else %} | |
| <li class="disabled"><span>«</span></li> | |
| {% endif %} | |
| {% for i in page_obj.paginator.page_range %} | |
| {% if page_obj.number == i %} | |
| <li class="active"><span>{{ i }} <span class="sr-only">(current)</span></span></li> | |
| {% else %} |
This file contains hidden or 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
| # Brewfile | |
| cask_args appdir: '/Applications' | |
| tap 'caskroom/cask' | |
| tap 'homebrew/bundle' | |
| brew 'azure-cli' | |
| brew 'ctop' | |
| brew 'curl' | |
| brew 'ghq' | |
| brew 'gist' |