diff options
| author | Hongyuan Ma | 2018-06-24 14:25:19 +0000 |
|---|---|---|
| committer | Hongyuan Ma | 2018-06-24 14:25:19 +0000 |
| commit | 67a5967b143e737df6af7c2c23da4bf3dab2d449 (patch) | |
| tree | f79925a1e91f73705de376eccf55512ecea70f4a /web/apps | |
| parent | e354c27ea9433415014f30249ecfa345ff8df089 (diff) | |
Perfect table rendering in detail page
Diffstat (limited to 'web/apps')
| -rw-r--r-- | web/apps/test_records/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web/apps/test_records/models.py b/web/apps/test_records/models.py index 0758850..53b040a 100644 --- a/web/apps/test_records/models.py +++ b/web/apps/test_records/models.py @@ -216,6 +216,8 @@ class TestResult(models.Model): clients = models.IntegerField(verbose_name="clients", help_text="clients of the test result") start = models.DecimalField(max_digits=16, decimal_places=6, verbose_name="start", help_text="starttime of the test result") + tps = models.DecimalField(default=0,max_digits=18, decimal_places=6, verbose_name="tps", + help_text="tps of the test result") run = models.IntegerField(verbose_name="run", help_text="run number") threads = models.IntegerField(verbose_name="threads", help_text="threads of the test result") |
