mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-16 08:23:12 +00:00
Printer App a beginning.
This commit is contained in:
parent
6773575dc5
commit
4aa7b09db9
4 changed files with 6 additions and 1 deletions
|
@ -43,6 +43,9 @@ import math
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
def user_printing_path(instance, filename):
|
||||||
|
# File will be uploaded to MEDIA_ROOT/printings/user_<id>/<filename>
|
||||||
|
return 'printings/user_{0}/{1}'.format(instance.user.id, filename)
|
||||||
|
|
||||||
class JobWithOptions(RevMixin, models.Model):
|
class JobWithOptions(RevMixin, models.Model):
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -67,8 +67,8 @@
|
||||||
job.parentNode.removeChild(job);
|
job.parentNode.removeChild(job);
|
||||||
document.getElementById('id_form-TOTAL_FORMS').value --;
|
document.getElementById('id_form-TOTAL_FORMS').value --;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function add_listener_for_btn(rmBtn){
|
function add_listener_for_btn(rmBtn){
|
||||||
|
|
||||||
rmBtn.addEventListener("click", function(event){del_job(rmBtn.parentNode, event)});
|
rmBtn.addEventListener("click", function(event){del_job(rmBtn.parentNode, event)});
|
||||||
|
|
|
@ -77,6 +77,7 @@ LOCAL_APPS = (
|
||||||
're2o',
|
're2o',
|
||||||
'preferences',
|
'preferences',
|
||||||
'logs',
|
'logs',
|
||||||
|
'printer',
|
||||||
)
|
)
|
||||||
INSTALLED_APPS = (
|
INSTALLED_APPS = (
|
||||||
DJANGO_CONTRIB_APPS +
|
DJANGO_CONTRIB_APPS +
|
||||||
|
|
|
@ -74,6 +74,7 @@ urlpatterns = [
|
||||||
r'^preferences/',
|
r'^preferences/',
|
||||||
include('preferences.urls', namespace='preferences')
|
include('preferences.urls', namespace='preferences')
|
||||||
),
|
),
|
||||||
|
url(r'^printer/', include('printer.urls', namespace='printer')),
|
||||||
]
|
]
|
||||||
# Add debug_toolbar URLs if activated
|
# Add debug_toolbar URLs if activated
|
||||||
if 'debug_toolbar' in settings.INSTALLED_APPS:
|
if 'debug_toolbar' in settings.INSTALLED_APPS:
|
||||||
|
|
Loading…
Reference in a new issue