forked from servee/servee
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Example project is working, and the documentation is at least accurat…
…e to the code, It still needs a lot of work.
- Loading branch information
1 parent
bcc3eee
commit ba50f7d
Showing
20 changed files
with
96 additions
and
60 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
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 |
---|---|---|
|
@@ -15,8 +15,6 @@ Contents: | |
installation | ||
wysiwyg | ||
inlines | ||
menus | ||
toolbar | ||
sample_projects | ||
|
||
Indices and tables | ||
|
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,7 @@ | ||
|
||
========= | ||
|
||
========= | ||
|
||
Servee is on PyPI as django-servee | ||
|
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
Empty file.
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
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...es/servee/wysiwyg/insert/image/_list.html → ...wyg/insert/sample_image_insert/_list.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
File renamed without changes.
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 @@ | ||
# just here because apps expect a models file. |
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,42 @@ | ||
{% extends "site_base.html" %} | ||
{% load i18n uni_form_tags %} | ||
|
||
{% block bodyclass %}login{% endblock %} | ||
|
||
{% block content %} | ||
{% if form.errors and not form.non_field_errors and not form.this_is_the_login_form.errors %} | ||
<p class="errornote"> | ||
{% blocktrans count form.errors.items|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} | ||
</p> | ||
{% endif %} | ||
|
||
{% if form.non_field_errors or form.this_is_the_login_form.errors %} | ||
{% for error in form.non_field_errors|add:form.this_is_the_login_form.errors %} | ||
<p class="errornote"> | ||
{{ error }} | ||
</p> | ||
{% endfor %} | ||
{% endif %} | ||
|
||
<div id="content-main"> | ||
<form action="{{ app_path }}" method="post" id="login-form">{% csrf_token %} | ||
<div class="form-row"> | ||
{% if not form.this_is_the_login_form.errors %}{{ form.username.errors }}{% endif %} | ||
<label for="id_username" class="required">{% trans 'Username:' %}</label> {{ form.username }} | ||
</div> | ||
<div class="form-row"> | ||
{% if not form.this_is_the_login_form.errors %}{{ form.password.errors }}{% endif %} | ||
<label for="id_password" class="required">{% trans 'Password:' %}</label> {{ form.password }} | ||
<input type="hidden" name="this_is_the_login_form" value="1" /> | ||
<input type="hidden" name="next" value="{{ next }}" /> | ||
</div> | ||
<div class="submit-row"> | ||
<label> </label><input type="submit" value="{% trans 'Log in' %}" /> | ||
</div> | ||
</form> | ||
|
||
<script type="text/javascript"> | ||
document.getElementById('id_username').focus() | ||
</script> | ||
</div> | ||
{% 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 was deleted.
Oops, something went wrong.
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