Skip to content
Snippets Groups Projects
  1. Feb 09, 2018
  2. Jan 08, 2018
    • Benjamin Bertrand's avatar
      Add pagination to API · a87309e5
      Benjamin Bertrand authored
      Pagination information (next, prev, first, last) is included in the Link
      HTTP header.
      The total number of entries is provided in the X-Total-Count HTTP
      header.
      v0.5.1
      a87309e5
  3. Dec 22, 2017
  4. Dec 21, 2017
  5. Dec 19, 2017
  6. Dec 15, 2017
    • Benjamin Bertrand's avatar
      Fix validation error when field is disabled · 2db946d2
      Benjamin Bertrand authored
      If a selectfield is disabled, None is returned (not a string).
      To pass wtforms validation, that value shall be part of the choices.
      
      We use None as the value for SelectField that are optional (instead of
      '').
      We were previously converting '' to None when creating a model.
      We now use the coerce function to let the form convert 'None' to None.
      2db946d2
  7. Dec 06, 2017
  8. Nov 15, 2017
  9. Nov 03, 2017
  10. Sep 07, 2017
  11. Sep 06, 2017
    • Benjamin Bertrand's avatar
      Add page to create QR codes · 99536bdd
      Benjamin Bertrand authored
      This can be done via the Admin interface but this latter shall be
      restricted to admin users. This simple page allows the group "create"
      to easily add new Manufacturer, Model or Location.
      99536bdd
    • Benjamin Bertrand's avatar
      Replace hash with specific ICS Id (3 letters + 3 digits) · fe73933d
      Benjamin Bertrand authored
      The serial number might not be unique and can't be used
      as the string to hash.
      There are for example SD cards that all have the same SN.
      
      Using an ICS id allows to pre-print labels that can be assigned to
      hardware when scanning serial numbers.
      This id shall be easy to remember (unlike UUID).
      fe73933d
  12. Aug 18, 2017
  13. Jul 20, 2017
  14. Jul 19, 2017
    • Benjamin Bertrand's avatar
      Fix hash computation in admin view · 74437b80
      Benjamin Bertrand authored
      The hash is supposed to be computed in the __init__ method of Item.
      But flask-admin never passes any parameter when creating the model class.
      The attributes are changed after creation.
      
      When creating an item in the admin view, we use the on_model_change
      method to update the hash.
      
      There might be a better way to avoid this code duplication.
      This works for now.
      74437b80
    • Benjamin Bertrand's avatar
      Add QR Codes page · 380551d2
      Benjamin Bertrand authored
      380551d2
    • Benjamin Bertrand's avatar
      Initial commit · 5c62905e
      Benjamin Bertrand authored
      5c62905e
Loading