-
Notifications
You must be signed in to change notification settings - Fork 231
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 #694 from Natay/master
updates in forum and recipes
- Loading branch information
Showing
21 changed files
with
109 additions
and
131 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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
__all__ = ['celery_app'] | ||
|
||
|
||
VERSION = '2.3.3' | ||
VERSION = '2.3.4' |
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 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 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 |
---|---|---|
@@ -1,9 +1,26 @@ | ||
{% extends "forum_base.html" %} | ||
{% load forum_tags %} | ||
{% load accounts_tags %} | ||
{% load static %} | ||
|
||
{% block headtitle %}Edit Profile{% endblock %} | ||
|
||
{% block head %} | ||
<script async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js" id="MathJax-script"></script> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | ||
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script> | ||
<link disabled rel="stylesheet" href="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/default.min.css"> | ||
<script async src="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script> | ||
{% endblock %} | ||
|
||
{% block js %} | ||
|
||
<script src="{% static 'semantic.min.js' %}"></script> | ||
<script src="{% static 'prism.js' %}"></script> | ||
<script src="{% static 'setup.js' %}{% randparam %}"></script> | ||
<script src="{% static 'forum.js' %}{% randparam %}"></script> | ||
{% endblock %} | ||
|
||
{% block content %} | ||
|
||
<div class="ui horizontal segments no-shadow"> | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,32 @@ | |
<link disabled rel="stylesheet" href="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/default.min.css"> | ||
<script async src="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script> | ||
{% endblock %} | ||
|
||
{% block css %} | ||
<link rel="stylesheet" href="{% static 'autocomplete/tribute.css' %}" /> | ||
<link rel="stylesheet" href="{% static 'autocomplete/at.who.css' %}" /> | ||
<link href="{% static 'pagedown.css' %}" type="text/css" media="all" rel="stylesheet"> | ||
<link href="{% static 'prism.css' %}" rel="stylesheet"> | ||
<link href="{% static 'pagedown/demo/browser/demo.css' %}" type="text/css" media="all" rel="stylesheet"> | ||
{% endblock %} | ||
|
||
|
||
{% block js %} | ||
<script src="{% static 'autocomplete/tribute.js' %}"></script> | ||
<script type="text/javascript" src="{% static 'pagedown/Markdown.Converter.js' %}"></script> | ||
<script type="text/javascript" src="{% static 'pagedown-extra/pagedown/Markdown.Converter.js' %}"></script> | ||
<script type="text/javascript" src="{% static 'pagedown/Markdown.Sanitizer.js' %}"></script> | ||
<script type="text/javascript" src="{% static 'pagedown/Markdown.Editor.js' %}"></script> | ||
<script type="text/javascript" src="{% static 'pagedown-extra/Markdown.Extra.js' %}"></script> | ||
<script type="text/javascript" src="{% static 'pagedown_init.js' %}{% randparam %}"></script> | ||
|
||
<script src="{% static 'semantic.min.js' %}"></script> | ||
<script src="{% static 'prism.js' %}"></script> | ||
<script src="{% static 'setup.js' %}{% randparam %}"></script> | ||
|
||
<script src="{% static 'markdown-it.js' %}"></script> | ||
<script src="{% static 'autocomplete/at.who.js' %}"></script> | ||
<script src="{% static 'effects.js' %}{% randparam %}"></script> | ||
<script src="{% static 'inplace.js' %}{% randparam %}"></script> | ||
<script src="{% static 'forum.js' %}{% randparam %}"></script> | ||
{% endblock %} |
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 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 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,14 @@ | ||
#!/bin/bash | ||
|
||
# Load the conda commands. | ||
source ~/miniconda3/etc/profile.d/conda.sh | ||
|
||
export POSTGRES_HOST=/var/run/postgresql | ||
|
||
# Activate the conda environemnt. | ||
conda activate engine | ||
|
||
# Set the configuration module. | ||
export DJANGO_SETTINGS_MODULE=conf.run.site_settings | ||
|
||
python manage.py cleanup |
Oops, something went wrong.