add link to price
This commit is contained in:
parent
253371376d
commit
00c07161e0
|
@ -67,7 +67,6 @@ class DeviceListMixin(GenericMixin):
|
|||
page = int(request.args.get('page', 1))
|
||||
per_page = int(request.args.get('per_page', PER_PAGE))
|
||||
filter = request.args.get('filter', "All+Computers")
|
||||
# import pdb; pdb.set_trace()
|
||||
|
||||
lots = self.context['lots']
|
||||
form_filter = FilterForm(lots, lot_id, all_devices=all_devices)
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import flask
|
||||
from decouple import config
|
||||
from flask import Blueprint
|
||||
from flask import current_app as app
|
||||
from flask import g
|
||||
|
@ -46,7 +47,7 @@ class LoginView(View):
|
|||
url_reset_password = "#"
|
||||
|
||||
if 'register' in app.blueprints.keys():
|
||||
url_register = flask.url_for('register.user-registration')
|
||||
url_register = config("PRICES_PAGE", "#")
|
||||
|
||||
if 'reset_password' in app.blueprints.keys():
|
||||
url_reset_password = flask.url_for('reset_password.reset-password')
|
||||
|
|
Reference in New Issue