У меня есть модель, которая содержит доменные имена, которые мне нужно пропинговать. Мне удалось создать представление, но я не мог понять, как вывести его на шаблон.
def index(request, page):
template = "home.html"
if request.method == 'POST':
csv_file = request.FILES['file']
if not csv_file.name.endswith('.csv'):
messages.error(request, 'Please upload a .csv file.')
data_set = csv_file.read().decode('ISO-8859-1')
io_string = io.StringIO(data_set)
next(io_string)
for column in csv.reader(io_string, delimiter=','):
_, created = Table.objects.update_or_create(
page=column[0],
keyword=column[1],
interval=column[2],
email=column[3],
notes=column[4],
billing=column[5],
)
page_object = get_object_or_404(Table, page=page)
try:
subprocess.check_call(['ping', '-c', '1', page_object.page])
except subprocess.CalledProcessError:
host_online = False
else:
host_online = True
context = {
'tables': Table.objects.all(),
'online': host_online,
'page': page
}
return render(request, template, context)
модель
class Table(models.Model):
page = models.URLField(verbose_name=None)
, и вот как я его вызываюшаблон
{% if online %}
<i class="small material-icons green-text">check_circle</i>
{% else %}
<i class="small material-icons red-text">close</i>
{% endif %}
Кто-нибудь может мне наставить? Возвращается data_upload() missing 1 required positional argument: 'page'