def index(request): panels = [ ajax.call('/leads/my_leads.html'), ajax.call('/tasks/my_tasks.html') ] return render_to_response('base.html', { 'body': panels, 'title': 'EasySnP' })
def new(request, app): panels = [ajax.call('/%s/new' % (app))] request.session['new_referer'] = request.get_full_path() return render_to_response('base.html', { 'body': panels, 'title': 'Hello Kitty' })
def tasks(request): panels = [ajax.call('/tasks/tasks.html')] return render_to_response('base.html', {'body': panels, 'title': 'Tasks'})
def contacts(request): panels = [ajax.call('/contacts/contacts.html')] return render_to_response('base.html', { 'body': panels, 'title': 'Contacts' })
def settings(request): panels = [ajax.call('/security/settings.html')] return render_to_response('base.html', { 'body': panels, 'title': 'Settings' })
def leads(request): panels = [ajax.call('/leads/leads.html')] return render_to_response('base.html', {'body': panels, 'title': 'Leads'})
def settings(request): panels = [ ajax.call('/security/settings.html') ] return render_to_response('base.html', {'body': panels, 'title': 'Settings' })
def files(request): panels = [ajax.call('/files/files.html')] return render_to_response('base.html', {'body': panels, 'title': 'Files'})
def new(request, app): panels = [ ajax.call('/%s/new' % (app)) ] request.session['new_referer'] = request.get_full_path() return render_to_response('base.html', {'body': panels, 'title': 'Hello Kitty' })
def delete(request, app, oid): panels = [ ajax.call('/%s/delete/%s/' % (app, oid)) ] return render_to_response('base.html', {'body': panels, 'title': 'Hello Kitty' })
def files(request): panels = [ ajax.call('/files/files.html') ] return render_to_response('base.html', {'body': panels, 'title': 'Files' })
def inquiries(request): panels = [ ajax.call('/inquiries/inquiries.html') ] return render_to_response('base.html', {'body': panels, 'title': 'Inquiries' })
def vessels(request): panels = [ ajax.call('/vessels/vessels.html') ] return render_to_response('base.html', {'body': panels, 'title': 'Vessels' })
def tasks(request): panels = [ ajax.call('/tasks/tasks.html') ] return render_to_response('base.html', {'body': panels, 'title': 'Tasks' })
def contacts(request): panels = [ ajax.call('/contacts/contacts.html') ] return render_to_response('base.html', {'body': panels, 'title': 'Contacts' })
def vessels(request): panels = [ajax.call('/vessels/vessels.html')] return render_to_response('base.html', { 'body': panels, 'title': 'Vessels' })
def inquiries(request): panels = [ajax.call('/inquiries/inquiries.html')] return render_to_response('base.html', { 'body': panels, 'title': 'Inquiries' })
def index(request): panels = [ ajax.call('/leads/my_leads.html'), ajax.call('/tasks/my_tasks.html') ] return render_to_response('base.html', {'body': panels, 'title': 'EasySnP' })
def delete(request, app, oid): panels = [ajax.call('/%s/delete/%s/' % (app, oid))] return render_to_response('base.html', { 'body': panels, 'title': 'Hello Kitty' })
def leads(request): panels = [ ajax.call('/leads/leads.html') ] return render_to_response('base.html', {'body': panels, 'title': 'Leads' })