2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 07:11:52 +00:00
This commit is contained in:
Philip Sargent 2020-07-21 00:15:31 +01:00
parent 5bc2c132fa
commit 5aed96c5a6
5 changed files with 9 additions and 6 deletions

5
.gitignore vendored
View File

@ -37,7 +37,6 @@ loadlogbk.log
_1623.svx
troggle-inspectdb.py
core/migrations/0001_initial.py
core/migrations/0001_initial.py
flatpages/migrations/0001_initial.py
troggle-inspectdb.py
lines-of-python.txt
@ -50,3 +49,7 @@ _1623.3d
_1623.pos
_1623.err
diffsettings.txt
core/migrations/0001_initial.py
flatpages/migrations/0001_initial.py
lines-of-python.txt
lines-of-templates.txt

View File

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.29 on 2020-07-20 22:32
# Generated by Django 1.11.29 on 2020-07-20 22:29
from __future__ import unicode_literals
from django.conf import settings

View File

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.29 on 2020-07-20 22:32
# Generated by Django 1.11.29 on 2020-07-20 22:29
from __future__ import unicode_literals
from django.db import migrations, models

View File

@ -23,8 +23,8 @@
54 ./dump.py
58 ./reset-django.py
69 ./logbooksdump.py
73 ./localsettings.py
73 ./settings.py
76 ./localsettings.py
77 ./core/views_statistics.py
79 ./urls.py
82 ./localsettingsWSL.py
@ -51,4 +51,4 @@
497 ./parsers/logbooks.py
593 ./core/models_caves.py
1059 ./parsers/survex.py
6837
6873

View File

@ -399,7 +399,7 @@ class CoreSinglescan(models.Model):
class CoreSurvexblock(models.Model):
name = models.CharField(max_length=100)
title = models.CharField(max_length=100)
title = models.CharField(max_length=200)
date = models.DateField(blank=True, null=True)
survexpath = models.CharField(max_length=200)
legsall = models.IntegerField(blank=True, null=True)